/* CSS Reset and Base Styles */
:root {
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --border-radius-full: 50%;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;

  --text-color: #333;
  --text-light: #666;
  --white: rgba(255, 255, 255, 0.95);
  --black: #000;
  --gray-100: rgba(241, 241, 241, 0.80);
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --color-text: #000000;
  --color-black: #000013;
  --color-stroke: #D9D9D9;
  --opacity-65: #000013 65%;
  --opacity-10: #000000 10%;
  --opacity-20: #000000 20%;
  --opacity-68: #000013 68%;
  --opacity-5: #000000 5%;
  --opacity-65-alt: #000000 65%;
  --opacity-50: #000000 50%;
  --gray-1: rgba(228, 228, 228, 0.80);
  --gray-2: #EAEAEA;
  --gray-blue-1: rgba(232, 235, 236, 0.80);
  --gray-blue-2: rgba(245, 246, 249, 0.80);
  --light-gray: rgba(233, 233, 233, 0.80);
  --light-gray-2: #F7F7F7;
  --opacity-65: #000C13A6;
  --opacity-8: #000000 8%;


  --primary: #2280F2;
  --pink: #e95fe4;
  --foundation-blue-100: #2280F2;
  --foundation-blue-400: #204CE7;
  --foundation-blue-50: #EC05E6;
  --dark-blue: #204CE7;
  --light-blue: #2280F2;
  --gradient: linear-gradient(89deg, #22B0F2 0.52%, #204CE7 50%, #EC05E6 172.75%);
  --gradient-box-shadow: 0 0 0 3px #204CE7, 0 0 0 6px #EC05E6;
  --green: rgb(101 196 114);

  /* Font Sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 2rem;
  --font-4xl: 2.5rem;
  --font-5xl: 3rem;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: var(--font-base);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
}

h1 {
  font-size: var(--font-5xl);
}

h2 {
  font-size: var(--font-5xl);
}

h3 {
  font-size: var(--font-4xl);
}

h4 {
  font-size: var(--font-3xl);
}

h5 {
  font-size: var(--font-3xl);
}

h6 {
  font-size: var(--font-xl);
}

p {
  margin-bottom: 1.5rem;
}


/* creature-wrapper */
#creature-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Allow clicks to pass through */
  transition: .5s opacity;
}

#creature {
  font-size: .2vh;
  font-size: .1vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150em;
  height: 150em;
  flex-wrap: wrap;
}

#creature div {
  transform-style: preserve-3d;
  position: relative;
  width: 4em;
  height: 4em;
  margin: 3em;
  border-radius: 2em;
  will-change: transform;
  mix-blend-mode: plus-lighter;
}

.inactive {
  display: none;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary-color);
  display: inline-block;
}

.center {
  text-align: center;
}

.section__header {
  margin-bottom: 5rem;
  position: relative;
}

.section__title {
  margin-bottom: 1.5rem;
  text-align: center;
}

.section__subtitle {
  font-size: var(--font-2xl);
  color: var(--text-light);
  max-width: 70rem;
  text-align: center;
  margin: 0 auto;
}

.section__label {
  display: inline-block;
  font-size: var(--font-xl);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section__cta-center {
  margin-top: 5rem;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Buttons */
.btn {
  background: var(--gradient);
  border: none;
  color: #ffffff;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: var(--font-lg);
  margin: 4px 2px;
  cursor: pointer;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.btn:hover:after {
  width: 210px;
  height: 200px;
  opacity: 1;
}

.btn:focus {
  outline: none;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: none;
}

.secondary-btn {
  background: white;
  box-shadow: 0 0 2px 0 #22B0F2;
  color: var(--primary);
}

.secondary-btn:hover {
  box-shadow: 0 0 4px 0 #22B0F2;
  text-shadow: 0 0 4px #22B0F2;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
  transition: .3s;
  border-bottom-left-radius: 21px;
  border-bottom-right-radius: 21px;
}

.header.header--hidden {
  transform: translateY(-100%);
}

.header.header--scrolled {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(10px);
}

.logo img {
  height: 5.5rem;
}

/* Burger Menu Styles */
.burger-icon {
  z-index: 1002;
  position: relative;
  cursor: pointer;
}

.burger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: 300ms;
  border-radius: 10px;
}

.burger input[type="checkbox"] {
  appearance: none;
  transition: 300ms;
  cursor: pointer;
}

.burger::before,
.burger::after {
  content: "";
  transition: 300ms;
  transform-origin: center center;
}

.burger::before {
  transform: translateY(8px);
}

.burger::after {
  transform: translateY(-8px);
}

.burger .line,
.burger::before,
.burger::after {
  width: 35px;
  height: 2.1px;
  display: block;
  background-color: black;
  border-radius: 5px;
  position: absolute;
}

.burger .line:checked {
  width: 0;
  transition-delay: 100ms;
}

.burger:has(.line:checked)::before {
  animation: animation1 400ms ease-out 0s 1 both;
}

.burger:has(.line:checked)::after {
  animation: animation2 400ms ease-out 0s 1 both;
}

.burger:hover {
  border-radius: 50%;
}

.burger:hover .line,
.burger:hover::before,
.burger:hover::after {
  background: #727272;
}

.burger:active {
  scale: 0.95;
}

@keyframes animation1 {
  0% {
    transform: translateY(8px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(0px) rotate(45deg);
  }
}

@keyframes animation2 {
  0% {
    transform: translateY(-8px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(0px) rotate(-45deg);
  }
}

/* Sidebar Navigation */
.sidebar {
  position: fixed;
  top: 80px;
  left: 10px;
  width: 320px;
  max-height: 700px;
  background: var(--white);
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
  transition: transform .5s ease-out;
  z-index: 1001;
  padding: 40px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 21px;
  transform: translateX(calc(-100% + -10px));
}

.sidebar.active {
  transform: translateX(0%);
  transition: transform .5s ease .3s;
}

.sidebar-nav {
  list-style: none;
}

.sidebar-nav li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
}

.sidebar.active .sidebar-nav li {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animation for links */
.sidebar.active .sidebar-nav li:nth-child(1) {
  transition-delay: 0.1s;
}

.sidebar.active .sidebar-nav li:nth-child(2) {
  transition-delay: 0.2s;
}

.sidebar.active .sidebar-nav li:nth-child(3) {
  transition-delay: 0.3s;
}

.sidebar.active .sidebar-nav li:nth-child(4) {
  transition-delay: 0.4s;
}

.sidebar.active .sidebar-nav li:nth-child(5) {
  transition-delay: 0.5s;
}

.sidebar.active .sidebar-nav li:nth-child(6) {
  transition-delay: 0.6s;
}

.sidebar-nav a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  display: block;
  transition: color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid #eee;
}

.sidebar-nav a:hover {
  color: #007bff;
  padding-left: 10px;
}

/* .sidebar-nav a.highlight {
  font-weight: bold;
  color: #007bff;
} */

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100%;
  opacity: 1;
  left: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease 0.3s;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.100);
  backdrop-filter: blur(1px);
}

.overlay.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s ease 0s;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: #f0f0f0;
}

/* Demo content */
.demo-content {
  margin-top: 100px;
  padding: 20px;
  height: 200vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.demo-content h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.demo-content p {
  text-align: center;
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sidebar {
    width: calc(100% - 20px);
  }

  .header {
    padding: 0 15px;
  }

  .logo {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .sidebar {
    padding: 80px 20px 40px;
  }

  .sidebar-nav a {
    font-size: 16px;
  }
}

/* Header */
/* Hero Section */
.hero {
  padding: 14rem 0 8rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: -1;
} */
.hero::after {
  border-radius: 26.05px 26.05px 0px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.75);

  background: #F1F1F1;

  box-shadow: 0px -3px 10px 0px rgba(255, 255, 255, 0.52) inset, 0px -5.595px 4.196px 0px rgba(255, 255, 255, 0.08);
}

.hero__content {
  margin: 0 auto;
  margin-bottom: 5rem;
  max-width: 1000px;
  text-align: center;
}

.hero__subtitle {
  text-align: center;
  font-size: var(--font-3xl);
  font-weight: 600;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title {
  margin-bottom: 2rem;
}

.hero__subtitle--sec {
  font-size: var(--font-3xl);
  color: var(--text-light);
  margin-bottom: 3rem;
}

.hero__project-selection {
  background: var(--gray-1);
  box-shadow: 0px -2.191px 9.203px 0px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 28px 16px 0px 16px;
  text-align: center;
  width: fit-content;
  position: absolute;
  z-index: 2;
  right: 160px;
  bottom: -95px;
}

.hero__selection-title {
  color: var(--color-black);
  font-size: var(--font-base);
  font-style: normal;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: start;
}

.hero__project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.hero__project-option {
  border-radius: 20px;
  background: var(--gray-blue-1);
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 90px;
}

.hero__project-option:hover {
  background-color: var(--white);
  box-shadow: 0px 3.287px 5.478px 0px rgba(0, 0, 0, 0.07);
}

.hero__project-option--selected {
  background-color: var(--white);
  box-shadow: 0px 3.287px 5.478px 0px rgba(0, 0, 0, 0.07);
}

.hero__project-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}

.hero__project-option .hero__project-icon svg {
  fill: var(--opacity-65);
}

.hero__project-option:hover .hero__project-icon svg {
  fill: var(--primary)
}



.hero__project-label {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--opacity-65);
}

.hero__project-option--web-app .hero__project-label {
  color: var(--primary);
}

.hero__webapp {
  background: var(--gray-1);
  box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 65px;
  width: 800px;
  position: relative;
  z-index: 1;
}


.hero__webapp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__webapp-summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__webapp-status-dot {
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
}

.hero__webapp-header-text {
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--opacity-65);
  font-size: var(--font-lg);
  font-weight: 600;
}

.hero__webapp-header-text span {
  color: var(--Black, #000C13);
  font-size: var(--font-xl);
  font-weight: 600;
}

.hero__webapp-project-type {
  font-size: var(--font-base);
  color: var(--opacity-65);
  margin-top: 2px;
  flex: 1;
}

.hero__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero__webapp-wrapper {
  height: 672px;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--light-gray);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero__webapp-wrapper .neon {
  width: 250px;
  height: 250px;
  position: absolute;
  bottom: 0;
  filter: blur(50px);
  z-index: -1;
}

.hero__webapp-wrapper .neon.neon-blue {
  background-color: var(--primary);
  opacity: .7;
  right: 0;
}

.hero__webapp-wrapper .neon.neon-purple {
  background-color: var(--foundation-blue-50);
  opacity: .7;
  left: 0;

}

.hero__webapp-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hero__webapp-about {
  display: flex;
  width: 120px;
  height: 30px;
  padding: 8.392px 23.778px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 13.987px;
  border-radius: 32px;
  background: var(--gray-2);
  position: relative;
}

.hero__webapp-about::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 69.934px;
  background: #B4B4B4;
}

.hero-webapp-image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}

.hero-webapp-image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.hero__webapp-explane {
  display: flex;
  width: 378px;
  height: 152px;
  padding: 33.568px;
  flex-direction: column;
  align-items: start;
  gap: 16.784px;
  border-radius: 20px;
  background: var(--gray-2);
  transition: background-color .2s;
}

.hero__webapp-explane:hover {
  background-color: #FFF;
}

.hero__webapp-explane h3 {
  text-align: start;
  color: rgba(0, 12, 19, 0.65);
  font-size: var(--font-base);
  ;
  font-weight: 500;
}

.hero__webapp-explane .lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__webapp-explane .lines div:first-child {
  width: 60%;
}

.hero__webapp-explane .lines div {
  width: 100%;
  height: 6px;
  background-color: #F5F5F5;
  transition: background-color 0.2s;
}


.hero__webapp-explane.light {
  background-color: #FFF;
  margin-top: 20px;
}

.hero__webapp-explane.light .lines div {
  background: #E0E0E0;
}

.hero__webapp-explane.light .lines div:first-child {
  background-color: #22A4EF;
}

.hero__webapp-explane .lines div:hover {
  background-color: #22A4EF;
}

/* About MainFlare Section */
.about-mainflare {
  max-width: 1200px;
  margin: 0 auto;
}

.about-mainflare__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-mainflare__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.about-mainflare__title {
  font-size: var(--font-5xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

.about-mainflare__title--highlight {
  color: var(--primary);
}

.about-mainflare__image {
  max-width: 500px;
  position: relative;
}

.about-mainflare__image img {
  width: 100%;
  height: 100%;
}

.about-mainflare__description {
  font-size: var(--font-xl);
  color: var(--opacity-68);
  line-height: 1.8;
  margin-top: 20px;
}


/* Stats Section */
.stats {
  display: flex;
  flex-wrap: wrap;
  /* flex-direction: column; */
  gap: 32px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 40px;
}

.stats__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.stats__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  background-color: var(--gray-blue-2);
}

.stats__icon svg {
  width: 35px;
  height: 35px;
}

.stats__content {
  flex: 1;
}

.stats__number {
  font-size: var(--font-4xl);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 8px;
}

.stats__description {
  font-size: var(--font-lg);
  color: var(--opacity-68);
  line-height: 1.6;
}

/* Services Section */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background-color: var(--white);
  background-color: rgb(245 245 245);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  border: 1px solid rgba(19, 56, 130, .1);
  overflow: hidden;
}


.service-card__title-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--white);
  width: fit-content;
  border-radius: 50px;
  padding: .5rem 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background-color: var(--primary-color);
}

.service-card__icon svg {
  width: 35px;
  height: 35px;
}

.service-card__title {
  margin: 0;
  font-size: var(--font-xl);
  color: var(--secondary-color);
}


.service-card__description {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: var(--font-2xl);
}

.service-card__link {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
}

.service-card__link svg {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.service-card:hover .service-card__link svg {
  transform: translateX(5px);
}

.vs-code {
  width: 100%;
  height: 250px;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(180deg, transparent, white 0%, white 50%, transparent);
}

.vs-code-container {
  width: inherit;
  height: 100%;
  /* border-radius: 0.625rem; */
}

.vs-code-header {
  width: inherit;
  margin-bottom: 0.3875rem;
}

.vs-code-header ul,
.vs-code-content-header ul {
  background-color: var(--gray-400);
  display: flex;
  width: inherit;
  gap: 0.3125rem;
  padding: 0.3875rem 0.4125rem;
  border-radius: 0.5rem;
}

.vs-code-header li,
.vs-code-content-header li {
  width: 15px;
  height: 8px;
  border-radius: 0.1875rem;
  background-color: rgb(160, 160, 160);
}

.vs-code-header li:nth-child(2),
.vs-code-content-header li:nth-child(2) {
  opacity: 0.6;
}

.vs-code-content-header li {
  width: 20px;
}

.vs-code-header li:hover,
.vs-code-content-header li:hover {
  opacity: 0.6;
}

.vs-code-main {
  display: flex;
  width: inherit;
  height: 100%;
  gap: 0.3875rem;
}

.vs-code-aside {
  width: 60px;
  background-color: var(--gray-400);
  border-radius: 0.5rem;
}

.vs-code-aside ul {
  display: flex;
  flex-direction: column;
  padding: 0.625rem 0.3125rem;
}

.vs-code-aside li {
  width: 100%;
  height: 5px;
  background-color: var(--gray-300);
  margin-bottom: 0.3125rem;
  border-radius: 0.3125rem;
}

.vs-code-aside li:nth-child(2) {
  border: 1px solid rgb(167, 167, 167);
  opacity: .8;
}

.vs-code-aside li:hover {
  border: 1px solid rgb(167, 167, 167);
  opacity: .8;
}

.vs-code-content {
  width: inherit;
  border-radius: 0.5rem;
  height: 100%;
}

.vs-code-content-header {
  width: inherit;
  margin-bottom: 0.3875rem;
  height: 15px;
  display: flex;
  align-items: center;
}

.vs-code-code {
  background-color: var(--gray-300);
  width: 100%;
  height: calc(100% - 18px);
  border-radius: 0.3125rem;
  font-size: var(--font-xs);
  padding: 0.3125rem 0.625rem;
}

.vs-code-code pre {
  color: #104034;
}


.typewriter::after {
  content: '|';
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.universe-container {
  height: 250px;
  position: relative;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(180deg, transparent, white 0%, white 50%, transparent);
}

.universe-wrapper {
  position: absolute;
  top: 120px;
  left: 0;
  scale: 1.4;
  width: 100%;
}

.universe {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  z-index: 1;
}

.central-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(20, 20, 20, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: border .2s ease-in-out;
}

.service-card:hover .orbit {
  border: 1px dashed var(--primary);
}

.planet {
  position: absolute;
  border-radius: 50%;
  transform-origin: center;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.planet img {
  opacity: .8;
  transition: .2s opacity, .2s scale;
}

.service-card:hover .planet img {
  scale: 1.5;
}


/* %*&^%*&^$*^*&%&^% */


.data-analytics-container {
  position: relative;
  margin: 0 auto;
}

.steps {
  display: flex;
  justify-content: center;
  height: 250px;
  align-items: flex-end;
  overflow: hidden;
}

.step {
  position: relative;
  text-align: center;
  color: white;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
  transition: all 0.5s ease;
  background: linear-gradient(0deg, transparent, var(--gray-400));
  border-radius: 5px;
}

.step:hover {
  background-color: #74b3ffe5;
}

.step:hover {
  transform: translateY(-5px);
  border: 1px solid var(300);
}

.data-analytics-icons {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  opacity: .2;
}

.data-analytics-icons .icon {
  position: relative;
  width: fit-content;
}

.icon-num::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 2px;
  background-color: black;
}

.icon-num .num {
  font-size: .8rem;
  opacity: var(--opacity-65);
}

.step-icon {
  width: 300px;
  height: 300px;
}

.question {
  display: none;
}

.step-title {
  display: none;
}

#step1 {
  width: 15%;
  height: 90%;
}

#step2 {
  width: 15%;
  height: 40%;
}

#step3 {
  width: 15%;
  height: 60%;
}

#step4 {
  width: 15%;
  height: 20%;
}

#step5 {
  width: 15%;
  height: 70%;
}

#step6 {
  width: 15%;
  height: 95%;
}

/* Popup styles */
.data-info {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  pointer-events: auto;
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.stat-row:hover {
  background-color: #f5f9ff;
}

.stat-label {
  color: #555;
  font-size: var(--font-sm);
}

.stat-value {
  color: #1874b9;
  font-weight: bold;
  font-size: var(--font-sm);
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.digital-solution .launch,
.digital-solution .implementation,
.digital-solution .talk-to-us,
.section-solution .mobile-app,
.section-solution .website-dev,
.section-solution .erp-system {
  transition: all 0.3s ease;
  background-color: var(--gray-blue-2);
  padding: 24px 24px 0px 24px;
  border-radius: 24px;
  border: 1px solid var(--color-stroke);

  /* black mode */

  /* background-color: hsla(240, 15%, 9%, 1);
  background-image: radial-gradient(at 88% 40%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 0% 64%, hsla(263, 93%, 56%, 1) 0px, transparent 85%),
    radial-gradient(at 41% 94%, hsla(284, 100%, 84%, 1) 0px, transparent 85%),
    radial-gradient(at 100% 99%, hsla(306, 100%, 57%, 1) 0px, transparent 85%); */
}

.digital-solution .launch,
.digital-solution .implementation,
.digital-solution .talk-to-us {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* .digital-solution .launch::before,
.digital-solution .implementation::before,
.digital-solution .talk-to-us::before,
.section-solution .mobile-app::before,
.section-solution .website-dev::before,
.section-solution .erp-system::before {
  background: linear-gradient(45deg, #232228, #232228, #232228, #232228, #01c3a8) border-box;
  position: absolute;
  content: "";
  top: 0;
  left: 1px;
  width: 100%;
  height: 100%;
  border-radius: 2.25rem;
  z-index: -1;
  border: 0.155rem solid transparent;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
} */

.digital-solution .launch__details,
.digital-solution .implementation__details,
.digital-solution .talk-to-us__details,
.section-solution .mobile-app__details,
.section-solution .website-dev__details,
.section-solution .erp-system__details {
  background: var(--gray-100);
  border-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 16px 16px 0px 16px;
  height: 550px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.08);
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(180deg, transparent, white 0%, white 50%, transparent);
  position: relative;
}

.digital-solution .launch__details,
.digital-solution .implementation__details,
.digital-solution .talk-to-us__details {
  height: 400px;
}

.digital-solution__section-icon,
.section-solution__section-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(89deg, #22b0f2f5 0.52%, #ec05e4f6 172.75%);
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
}

.digital-solution__section-title,
.section-solution__section-title {
  font-size: var(--font-2xl);
  margin-bottom: 16px;
  text-align: start;
  position: relative;
}

.digital-solution__section-subtitle,
.section-solution__section-subtitle {
  font-size: var(--font-xl);
  color: var(--opacity-65);
  height: 100px;
  position: relative;
}

.section-solution {
  max-width: 1200px;
  margin: 0 auto;
}

.section-solution__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.section-solution__title {
  text-align: center;
  font-size: var(--font-4xl);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.section-solution__subtitle {
  text-align: center;
  font-size: var(--font-xl);
  ;
  color: var(--opacity-65);
  margin-bottom: 2rem;
}

/* Mobile App Section */
.mobile-app__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-app__time {
  font-size: var(--font-lg);
  ;
  font-weight: 600;
  color: var(--color-black);
}

.mobile-app__status {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-app__signal {
  width: fit-content;
  height: auto;
}

.mobile-app__welcome {
  font-size: var(--font-3xl);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 30px;
}

.mobile-app__project {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
}

.mobile-app__project-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.mobile-app__project-icon {
  width: 40px;
  height: 40px;
  background: var(--gray-1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xl);
  ;
}

.mobile-app__project-info h3 {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-black);
}

.mobile-app__project-info p {
  color: var(--opacity-65);
  font-size: var(--font-xs);
  margin-bottom: 0;
}

.mobile-app__stats {
  display: flex;
  gap: 20px;
}

.mobile-app__stat {
  text-align: center;
  flex: 1;
  background-color: var(--light-gray-2);
  padding: 12px;
  border-radius: 16px;
}

.mobile-app__stat-number {
  font-size: var(--font-xl);
  color: var(--color-black);
}

.mobile-app__stat-label {
  font-size: 0.9rem;
  color: var(--opacity-65);
}

.mobile-app__priority {
  margin-top: 20px;
  background-color: var(--white);
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 16px;
}

.mobile-app__priority-title {
  font-size: var(--font-base);
  ;
  color: var(--color-black);
  margin-bottom: 15px;
}

.mobile-app__task {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mobile-app__task-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--font-xs);
}

.mobile-app__task-check--pending {
  background: var(--gray-1);
}

.mobile-app__task-text {
  color: var(--color-black);
  font-size: var(--font-base);
  ;
}

.mobile-app__task-text--pending {
  color: var(--opacity-65);
}

/* Website Development Section */

.website-dev__person {
  background-color: var(--white);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
}

.website-dev__social {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.website-dev__social .website-dev__social--about {
  width: 100px;
  height: 30px;
  padding: 8.392px 23.778px;
  align-items: center;
  gap: 13.987px;
  border-radius: 32px;
  background: var(--gray-2);
  position: relative;
  scale: .8;
}

.website-dev__social .website-dev__social--about::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 6px;
  flex-shrink: 0;
  border-radius: 69.934px;
  background: #B4B4B4;
}

.website-dev__social--links {
  display: flex;
}

.website-dev__social--links div {
  font-size: .8rem;
  color: var(--opacity-65);
}

.website-dev__avatar {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  margin: 20px auto;
}

.website-dev__avatar img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.website-dev__title {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: center;
}

.website-dev__cta {
  background: var(--color-black);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: block;
  width: fit-content;
  transition: all 0.3s ease;
  font-size: .8rem;
  margin: 0 auto;
}

.website-dev__cta:hover {
  background: var(--foundation-blue-100);
  transform: scale(1.05);
}

.website-dev__nav {
  display: flex;
  justify-content: center;
}

.website-dev__nav .website-dev__nav-item {
  flex: 1;
  height: 30px;
  padding: 8.392px 23.778px;
  align-items: center;
  gap: 13.987px;
  border-radius: 32px;
  background: var(--gray-2);
  position: relative;
  scale: .8;
}

.website-dev__nav-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 6px;
  flex-shrink: 0;
  border-radius: 69.934px;
  background: #B4B4B4;
}

.website-dev__nav-item--active {
  background: var(--foundation-blue-100);
}

.website-dev__footer {
  background-color: var(--white);
  border-radius: 16px;
  padding: 16px;
  margin-top: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.website-dev__description {
  font-size: var(--font-base);
  ;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.4;
}

.website-dev__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.website-dev__link {
  width: 30%;
  height: 60px;
  border-radius: 16px;
  background: var(--gray-2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.website-dev__link:hover {
  background: var(--foundation-blue-100);
  transform: scale(1.1);
}

/* ERP System Section */

.erp-system__title {
  font-size: var(--font-base);
  ;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 30px;
  border-radius: 16px;
  padding: 12px 16px;
  background: var(--gray-blue-1);
}

.erp-system__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.erp-system__grid .hero__project-label {
  color: var(--opacity-65);
}

/* Sticky Section */
.sticky-section {
  /* position: relative; */
  background-image:
    linear-gradient(#fff, #fff0 80%, #fff0 20%, #fff),
    url('../images/homepage/grid-bg.png');
  background-position: center center;
}

.sticky-section-grid {
  position: relative;
  display: flex;
  justify-content: space-between;
  /* overflow: hidden; */
}


.svg-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.svg-dots circle {
  fill: var(--gradient);
}

.steps-indicator {
  min-width: 200px;
  padding-left: 15px;
}

.steps-indicator .sticky {
  top: 100px;
  position: sticky;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps-indicator span {
  display: block;
  position: relative;
  color: var(--primary);
  letter-spacing: 1px;
  font-weight: 600;
  font-size: var(--font-3xl);
  transition: 0.3s;
  opacity: .7;
  transition: opacity .3s, padding .3s;
}

.steps-indicator span::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 9999px;
  transition: width .3s;
}

.steps-indicator span.active {
  color: var(--primary);
  opacity: 1;
  padding-left: 10px;
}

.steps-indicator span.active::before {
  width: 15px;
}

.digital-solution {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
}

/* Launch Component */
.launch {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--color-stroke);
  transition: all 0.3s ease;
}


.launch__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.launch__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--font-xl);
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
  top: 15px;
  background: #65C472;
  box-shadow: 0px 4px 23.9px 0px #6BCD76;
}

.launch:hover .launch__icon {
  transform: scale(1.1);
}

.launch__title {
  background: var(--gray-blue-1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: var(--color-black);
  font-size: var(--font-base);
  ;
  font-weight: 500;
  flex: 1;
}

.launch__progress-list {
  list-style: none;
}

.launch__progress-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.launch__progress-item:hover {
  border-radius: 8px;
  padding: 0.75rem;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.launch__progress-label {
  font-size: var(--font-base);
  ;
  color: var(--color-text);
  font-weight: 500;
  width: 60px;
}

.launch__progress-bar {
  flex: 1;
  height: 20px;
  background: var(--gray-1);
  border-radius: 50px;
  margin: 0 1rem;
  overflow: hidden;
}

.launch__progress-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 0.3s ease;
}

.launch__progress-fill--design {
  background: var(--primary);
  width: 75%;
}

.launch__progress-fill--wireframes {
  background: var(--gray-1);
  width: 0%;
}

.launch__progress-fill--research {
  background: var(--gray-1);
  width: 0%;
}

.launch__progress-fill--required {
  background: var(--gray-1);
  width: 0%;
}

.launch__progress-percentage {
  font-size: var(--font-sm);
  color: var(--color-text);
  font-weight: 600;
  min-width: 45px;
  text-align: right;
}

/* Implementation Component */
.implementation {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--color-stroke);
  text-align: center;
  transition: all 0.3s ease;
}


.implementation__status {
  background: var(--gray-blue-1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.implementation__status-text {
  color: var(--color-black);
  font-size: var(--font-base);
  ;
  font-weight: 500;
}

.implementation__status-icon {
  color: var(--green);
  font-size: var(--font-xl);
}

.implementation__label {
  color: var(--color-text);
  font-size: var(--font-base);
  ;
  font-weight: 500;
  margin-bottom: 1rem;
}

.implementation__timer {
  font-size: var(--font-5xl);
  color: var(--color-black);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.implementation__button {
  color: var(--primary);
  border-radius: 8px;
  font-size: var(--font-base);
  ;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.implementation__button:hover {
  transform: translateY(-2px);
}

.implementation__button-icon {
  width: 32px;
  height: 32px;
}

/* Talk to Us Component */
.talk-to-us {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--color-stroke);
  transition: all 0.3s ease;
}

.talk-to-us__messages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.talk-to-us__message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.talk-to-us__message--user {
  flex-direction: row-reverse;
}

.talk-to-us__avatar {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  margin: 10px auto;
}

.talk-to-us__avatar img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.talk-to-us__bubble {
  max-width: 80%;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  font-size: var(--font-sm);
  line-height: 1.4;
  transition: all 0.3s ease;
}

.talk-to-us__bubble:hover {
  transform: translateY(-1px);
}

.talk-to-us__bubble--user {
  background: var(--gray-blue-1);
  color: var(--color-black);
  border-bottom-right-radius: 6px;
}

.talk-to-us__bubble--assistant {
  background: var(--primary);
  color: var(--white);
  border-bottom-left-radius: 6px;
}

.talk-to-us__input-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-gray-2);
  border-radius: 12px;
  border: 1px solid var(--color-stroke);
  transition: all 0.3s ease;
}

.talk-to-us__input-container:hover {
  border-color: var(--primary);
}

.talk-to-us__input-container:focus-within {
  border-color: var(--primary);
}

.talk-to-us__add-button {
  background: none;
  border: none;
  color: var(--gray-1);
  font-size: var(--font-xl);
  cursor: pointer;
  transition: all 0.3s ease;
}

.talk-to-us__add-button:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.talk-to-us__input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  color: var(--color-text);
  font-size: var(--font-sm);
}

.talk-to-us__input::placeholder {
  color: var(--gray-1);
}

.talk-to-us__send-button {
  border: none;
  color: var(--white);
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.talk-to-us__send-button:hover {
  transform: translateX(2px) rotate(-30deg);
}

.talk-to-us__send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* scroller */

.scrollers-wrapper {
  width: 100%;
  height: 250px;
  position: relative;
}

.scrollers-wrapper .scrollers {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}

.scroller {
  max-width: 100vw;
  height: 50px;
  display: grid;
  place-content: center;
  margin: 0 auto;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg,
      transparent,
      white 20%,
      white 80%,
      transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 180s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.scroller__inner .item {
  flex: 1;
  padding: 5px 15px;
  background: linear-gradient(120deg, var(--gray-300), var(--gray-400));
  background: linear-gradient(0deg, transparent, var(--gray-400));
  border-radius: .7rem;
  display: grid;
  place-items: center;
  position: relative;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.750);
  font-size: var(--font-lg);
  transition: background-color .5s;
}

.scroller__inner .item:hover {
  background-color: #74b3ffe5;
}

/* Projects */
.project-card {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
  background: var(--gray-blue-2);
  padding: 40px;
  padding-right: 0;
  border-radius: 12px;
}

.project-details {
  max-width: 350px;
  position: relative;
}

.project-details__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.project-details__tag {
  background-color: #6f31e7;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: var(--font-base);
  color: white;
  font-weight: 600;
}

.project-details__title {
  font-size: var(--font-3xl);
  font-weight: bold;
  margin-bottom: 16px;
}

.project-details .project-details__actions {
  margin-bottom: 16px;
  display: flex;
  gap: 1rem;
}

.project-details__actions--btn.soon .btn {
  pointer-events: none;
  cursor: not-allowed;
}

.project-details__actions--btn.soon {
  position: relative;
}

.project-details__actions--btn.soon::before {
  content: 'SOON';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: fit-content;
  padding: 6px 10px;
  background-color: white;
  color: var(--primary);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-align: center;
  border-radius: 50px;
  font-size: var(--font-2xl);
  z-index: 4;
  opacity: 0;
  transition: .3s;
}

.project-details__actions--btn.soon:hover::before {
  top: -40px;
  opacity: 1;
}

.project-details__description p {
  font-size: var(--font-lg);
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 28px;
}

.project-details__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-details__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.project-details__info {
  display: flex;
  flex-direction: column;
}

.project-details__name {
  font-weight: bold;
  font-size: var(--font-sm);
}

.project-details__position {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.6);
}

.project-card__image {
  max-width: 650px;
  position: relative;
  background: linear-gradient(180deg, transparent, var(--gray-200));
  border-radius: 12px;
}

.project-card__image img {
  width: 103%;
  height: 103%;
  object-fit: cover;
  vertical-align: bottom;
  border-radius: 12px;
  transform: translate(15px, -20px);
  transition: all .3s ease-out;
}

.project-card:hover .project-card__image img {
  transform: translate(0);
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
}

/* Contact Form Block */
.contact-form {
  background: var(--gray-blue-2);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px var(--opacity-8);
  display: grid;
}

.contact-form__header {
  margin-bottom: 32px;
}

.contact-form__title {
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.contact-form__subtitle {
  font-size: var(--font-base);
  ;
  color: var(--opacity-65-alt);
  line-height: 1.5;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* margin-bottom: 32px; */
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}

.contact-form__input {
  padding: 16px 20px;
  border: 1px solid var(--gray-1);
  border-radius: 8px;
  font-size: var(--font-base);
  ;
  color: var(--color-text);
  background: var(--white);
  transition: all 0.3s ease;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 128, 242, 0.1);
}

.contact-form__input::placeholder {
  color: var(--opacity-50);
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact-form__submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: var(--font-base);
  ;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 128, 242, 0.3);
}

.contact-form__submit:active {
  transform: translateY(0);
}

/* Contact Info Block */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  background: var(--gray-blue-2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 24px var(--opacity-8);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--gray-blue-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xl);
  ;
  color: var(--color-text);
  flex-shrink: 0;
}

.contact-info__icon--chat {
  background: var(--gradient);
  color: var(--white);
}

.contact-info__content {
  flex: 1;
}

.contact-info__title {
  font-size: var(--font-lg);
  ;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.contact-info__description {
  font-size: var(--font-sm);
  color: var(--opacity-65-alt);
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-info__link {
  color: var(--primary);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: 500;
}

.contact-info__link:hover {
  text-decoration: underline;
}

.contact-info__detail {
  font-size: var(--font-base);
  ;
  color: var(--color-text);
  font-weight: 500;
}

.contact-info__hours {
  font-size: var(--font-sm);
  color: var(--opacity-65-alt);
  margin-bottom: 4px;
}

/* Map Container */
.contact-info__map {
  width: 100%;
  height: 200px;
  background: var(--gray-2);
  border-radius: 12px;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.contact-info__map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-2) 0%, var(--light-gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--opacity-50);
  font-size: var(--font-sm);
  position: relative;
}

.contact-info__map-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(34, 128, 242, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(236, 5, 230, 0.1) 0%, transparent 50%);
}

.contact-info__map-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  height: 100%;
}

.footer {
  background-color: var(--gray-900);
  color: var(--gray-400);
  padding: 6rem 0 2rem;
}

.footer__main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
  position: relative;
}

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

.footer__company {
  grid-column: span 2;
}

.footer__logo {
  height: 4rem;
  margin-bottom: 2rem;
}

.footer__description {
  margin-bottom: 2.5rem;
  max-width: 30rem;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.footer__social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__title {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__link {
  color: var(--gray-400);
  transition: var(--transition);
  font-size: var(--font-xl);
}

.footer__link:hover {
  color: var(--primary);
  transform: translateX(5px);
  text-decoration: underline;
}

.footer__newsletter {
  grid-column: span 2;
}

.footer__newsletter-text {
  margin-bottom: 2rem;
}

.footer__form {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

@media (min-width: 576px) {
  .footer__form {
    flex-direction: row;
  }
}

.footer__input {
  flex-grow: 1;
  padding: 1.2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--border-radius);
  color: var(--white);
  font-family: inherit;
  font-size: 1.6rem;
}

.footer__input::placeholder {
  color: var(--gray-500);
}

.footer__input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color);
}

.footer__submit {
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  color: var(--gray-500);
  font-size: 1.4rem;
}

.footer__legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer__legal-link {
  color: var(--gray-500);
  font-size: 1.4rem;
  transition: var(--transition);
}

.footer__legal-link:hover {
  color: var(--primary-color);
}

/* Portfolio Page */
.portfolio__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.portfolio__filter-btn {
  padding: 1rem 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio__filter-btn:hover,
.portfolio__filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.mainflare-cubes {
  position: fixed;
  bottom: 25px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  background-color: white;
  z-index: 900;
  transition: .5s opacity;
  padding: 5px;
}

.mainflare-cubes::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
  width: 0%;
  height: 1px;
  background-color: rgb(85, 85, 85);
  transition: .5s width;
}

.mainflare-cubes img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainflare-cubes.active {
  opacity: .5;
}

.mainflare-cubes.active::before {
  width: 100%;
}

/* Media Queries */

@media (max-width: 480px) {
  .about-mainflare {
    padding: 32px 16px;
  }

  .about-mainflare__title {
    font-size: var(--font-3xl);
  }

  .about-mainflare__content {
    gap: 32px;
  }

  .stats__item {
    gap: 16px;
  }

  .stats__icon {
    width: 40px;
    height: 40px;
  }

  .stats__icon svg {
    width: 20px;
    height: 20px;
  }

  .stats__number {
    font-size: var(--font-3xl);
  }

  .stats__label {
    font-size: var(--font-base);
    ;
  }

  .stats__description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hero__webapp {
    padding: 20px;
  }

  .hero__webapp-wrapper {
    height: 550px;
  }

  .hero__webapp-header {
    flex-direction: column-reverse;
  }

  .hero__webapp-explane {
    width: 90%;
    padding: 15px;
  }

  .hero__project-selection {
    border-radius: 20px;
    padding: 18px 12px 0px 12px;
    bottom: -80px;
    right: 0;
  }

  .hero__project-option {
    padding: 8px;
    height: 80px;
  }

  .about-mainflare {
    padding: 40px 20px;
  }

  .about-mainflare__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-mainflare__title {
    font-size: 2.2rem;
  }

  .about-mainflare__description {
    font-size: var(--font-base);
    ;
  }

  .digital-solution {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .implementation__timer {
    font-size: var(--font-4xl);
  }

  .stats {
    gap: 28px;
  }

  .stats__number {
    font-size: 2.2rem;
  }

  .stats__label {
    font-size: var(--font-lg);
    ;
  }

  .section-solution__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-solution__title {
    font-size: var(--font-3xl);
  }

  .mobile-app__stats {
    gap: 10px;
  }

  .erp-system__grid {
    grid-template-columns: 1fr;
  }

  .digital-solution {
    max-width: 100%;
  }

  .steps-indicator {
    display: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__title {
    font-size: var(--font-xl);
    ;
  }

  .contact-info__item {
    padding: 20px;
  }

  .talk-to-us__avatar {
    width: 40px;
    height: 40px;
  }

  .footer__company {
    grid-column: span 2;
  }

  .footer__newsletter {
    grid-column: span 2;
  }

  .footer__bottom {
    justify-content: space-between;
  }

}

@media (max-width: 1024px) {
  .about-mainflare {
    padding: 60px 20px;
  }

  .about-mainflare__container {
    gap: 40px;
  }

  .about-mainflare__title {
    font-size: var(--font-4xl);
  }

  .project-card {
    padding: 20px;
  }

  .project-details {
    max-width: 100%;
  }

  .project-details__description p {
    max-width: 350px;
  }

  .project-card__image {
    width: 100%;
    margin: 0 auto;
  }

  .project-card__image img {
    transform: translate(0);
  }
}

@media (max-width: 1200px) {

  .header {
    background-color: var(--white);
    backdrop-filter: blur(10px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
}

/* background-color: hsla(240, 15%, 9%, 1);
background-image: radial-gradient(at 88% 40%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
radial-gradient(at 0% 64%, hsla(263, 93%, 56%, 1) 0px, transparent 85%),
radial-gradient(at 41% 94%, hsla(284, 100%, 84%, 1) 0px, transparent 85%),
radial-gradient(at 100% 99%, hsla(306, 100%, 57%, 1) 0px, transparent 85%); */

/* observer */
.header.hidden-observe {
  opacity: 0;
  transition: 1.3s;
  transform: translateY(-30px);
}

.header.hidden-observe.show-observe {
  opacity: 1;
  transform: translateX(0px);
}

.hidden-observe {
  opacity: 0;
  transition: 1.3s;
  transform: translateY(30px);
  transition-property: transform, opacity;
}

.show-observe {
  opacity: 1;
  transform: translateX(0px);
}