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

body {
  position: relative;
  background-color: var(--bg-primary-body);
  color: var(--text-primary);
  font-family: 'IBM Plex Mono', monospace;
  overflow-x: hidden;
  background-image: var(--background-image);
  background-blend-mode: overlay;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 8px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background-image: url('../images/noise-texture.png');
  background-blend-mode: overlay;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-svg {
  width: 32px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.arrow-icon-header {
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 2px;
  display: inline-block;
  transform: scaleX(1.5);
  vertical-align: middle;
  margin-left: 5px;
  margin-top: -3px;

}


.social-contact-value {
  display: none;
}

.hero-content-desktop {
  display: none;
}

.logo {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  color: #4d8cf6;
  font-weight: bold;
  font-size: 1.2rem;
  width: auto;
}

.logo_image {
  width: 32px;
  height: 32px;
  display: flex;
}

.contact-icons {
  align-items: center;
}

.contact-button {
  display: inline-block;
  padding: 5px 20px;
  background-color: rgba(60, 60, 60, 0.7);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
  padding: 5px 15px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.container::before,
.container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--border-before);
}

.container::before {
  left: 15px;
}

.container::after {
  right: 15px;
}

.hero {
  margin-top: 0px;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-text-important {
  text-decoration: underline;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.5s;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.8s;
}

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 1.1s;
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-button {
  position: relative;
  background-color: rgb(74, 73, 73);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  width: 80%;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  z-index: 1;
}

.nav-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent,
      transparent 210deg,
      #4d8cf6 210deg,
      #a8c7ff 300deg,
      transparent 300deg);
  z-index: -1;
  animation: rotateGradient 6s linear infinite;

}

.nav-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: black;
  border-radius: 2px;
  z-index: -1;
}

.nav-button svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 768px) {
  .nav-button {
    font-size: 18px;
    max-width: 300px;
  }

  .nav-button svg {
    width: 20px;
    height: 20px;
  }
}

.robot-section {
  height: 280px;
  position: relative;
  margin: 5px 0;
  overflow: hidden;
  background-color: var(--robot-background);
  padding: 0;
}

.info-icon {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-icon:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.info-icon svg {
  width: 14px;
  height: 14px;
  color: #000000;
}

.tooltip {
  position: absolute;
  top: 45px;
  left: 12px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  z-index: 20;
  pointer-events: none;
}

.tooltip::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 12px;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.9);
  transform: rotate(45deg);
}

.tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#canvas3d {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  top: -20px;
}

.trail-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.trail {
  position: absolute;
  height: 4px;
  background: red;
  border-radius: 3px;
  opacity: 0;
  transform-origin: left center;
  box-shadow: 0 0 15px 5px rgba(255, 0, 0, 0.9);
}

.robot-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--robot-background);
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.robot-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  box-sizing: border-box;
  z-index: 10;
}

.robot-interaction {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  overflow: hidden;
  touch-action: none;
}

.services-section {
  padding: 5px 0;
}

.text-hero {
  text-align: center;
  margin-bottom: 15px;
}

.services-quick-links {
  margin: 1rem 0;
  padding: 1.25rem;
  border-radius: 0px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-quick-links h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.services-list li {
  padding: 0;
  margin: 0;
  width: 100%;
}

.services-list li a {
  padding: 10px 5px;
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  border: 1px solid rgb(231, 227, 227);
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
}

.services-list a svg {
  width: 40px;
}

.services-list a:active {
  background-color: rgba(255, 255, 255, 0.3);
}

.section-title {
  text-align: center;
  margin-bottom: 5px;
  font-size: 1.6rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.3s;
}

.cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 50px;
}

.card {
  border-radius: 0px;
  padding: 10px;
  width: 100%;
  max-width: 350px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(237, 234, 234, 0.932);
  scroll-margin-top: 80px
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #4d8cf6;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 5px;
}

.portfolio-preview {
  width: 100%;
  background-color: #232323;
  padding: 10px;
}

.showcase-row {
  display: flex;
  gap: 10px;
}

.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.showcase-item.loading {
  position: relative;
}

.showcase-item.loading:after {
  content: "Chargement...";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 14px;
}

.showcase-item {
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121212;
}

.mobile-box {
  flex: 1;
  height: 300px;
}

.desktop-box {
  flex: 1;
  height: 170px;
}

.desktop-box-ux {
  flex: 1;
  height: 250px;
}

.showcase-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.showcase-text {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  text-align: center;
}


video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-text {
  font-size: 0.9rem;
  font-style: italic;
}

.reason-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.reason-title {
  font-weight: bold;
  font-size: 18px;
}

.reason-details {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 8px;
}

.tech-stack {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}


.stack-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stack-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.stack-icon:hover {
  transform: scale(1.2);
}

.stack-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-icons-group {
  display: flex;
  gap: 35px;
  justify-content: center;
  margin: 5px 0;
}

.contact-icons a svg {
  width: 24px;
  height: 24px;
  fill: white !important;
  color: white;
}

.contact-icons-group a svg {
  width: 64px;
  height: 64px;
  fill: white !important;
  color: white !important;
}

.card-contact-link {
  fill: white !important;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}


.card-contact-link:active {
  transform: scale(0.95);
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

.robot-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  transition: opacity 0.5s ease;
}

.loading-text {
  color: #4d8cf6;
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: center;
}

.loading-bar-container {
  width: 80%;
  max-width: 300px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4d8cf6, #fafafa);
  border-radius: 5px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(77, 140, 246, 0.7);
}


.social-contact-value {
  font-size: 16px;
}

.chat-footer {
  position: fixed;
  bottom: 0px;
  right: 0px;
  margin-top: 30px;
  z-index: 1000;
}

.chat-button {
  width: 60px;
  height: 60px;
}

.chat-icon svg {
  width: 100%;
  height: 100%;
  fill: white;
}


.cards-container-title {
  display: none;
}


.code-showcase {
  width: 100%;
  max-width: 700px;
  margin: 30px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 2px;
  background: #1e1e1e;
}

/* Fancy border animation */
.code-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent,
      transparent 180deg,
      #ff5f56 180deg,
      #ffbd2e 240deg,
      #27c93f 300deg,
      transparent 300deg);
  z-index: 0;
  animation: rotateBorder 8s linear infinite;
  pointer-events: none;
}

.code-showcase::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #1e1e1e;
  border-radius: 6px;
  z-index: 0;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.code-header {
  background-color: #2b2b2b;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  border-radius: 6px 6px 0 0;
}

.code-content {
  background-color: #1e1e1e;
  padding: 20px;
  overflow-x: auto;
  position: relative;
  z-index: 1;
  border-radius: 0 0 6px 6px;
}

.code-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red {
  background-color: #ff5f56;
}

.yellow {
  background-color: #ffbd2e;
}

.green {
  background-color: #27c93f;
}

.code-content {
  background-color: #1e1e1e;
  padding: 10px;
  overflow-x: auto;
}

.code-content pre {
  margin: 0;
}

.code-content code {
  font-family: 'IBM Plex Mono', monospace;
  color: #e6e6e6;
  font-size: 14px;
  line-height: 1.5;
}

.code-content .keyword {
  color: #c678dd;
}

.code-content .punctuation {
  color: #abb2bf;
}

.code-content .string {
  color: #98c379;
}

.code-content .function {
  color: #61afef;
}

.code-content .variable {
  color: #e06c75;
}

.code-content .property {
  color: #e5c07b;
}

.code-content .operator {
  color: #56b6c2;
}

.api-title {
  font-size: x-large;
  text-align: center;
  font-weight: bold;
}


.grid-background {
  position: relative;
  width: 100%;
  background-color: #000000;
  overflow: hidden;
}

.grid-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}

.grid-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 240px 240px;
  z-index: 2;
}

.content-container {
  position: relative;
  z-index: 10;
}

.feature-video {
  width: 100%;
  padding: 20px;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}


.document-files-section {
  background-color: #121212;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 15px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.document-files-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  margin: -1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.1) 100%);
  z-index: -1;
  pointer-events: none;
}

.document-files-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.1),
    inset -2px -2px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.files-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 15px;
  margin-bottom: 20px;
}

.file-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.file-corner {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}

.file-corner svg {
  width: 100%;
  height: auto;
  max-width: 74px;
}

.file-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}



.section-content {
  color: white;
  text-align: left;
  padding: 5px 0;
}

.txt-file .file-text {
  color: #30A46C;
}

.doc-file .file-text {
  color: #277F70;
}

.search-file .file-text {
  color: #8E4EC6;
}

.pdf-file .file-text {
  color: #E5484D;
}

.xml-file .file-text {
  color: #3E63DD;
}

.rtf-file .file-text {
  color: #d04284;
}

.section-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-content p {
  font-size: 15px;
  color: #a0a0a0;
  line-height: 1.4;
  margin: 0;
}

.work-method-section {
  background-color: #121212;
  padding: 30px 15px;
  position: relative;
  margin-top: 10px;
}

.work-method-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.method-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.method-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
}

.method-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  margin-bottom: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 50px;
  height: 50px;
}

.feature-line {
  height: 2px;
  width: 60px;
  margin-bottom: 15px;
}


.method-feature h3 {
  font-size: 26px;
  color: white;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.method-feature p {
  font-size: 16px;
  color: #a0a0a0;
  margin: 0;
  line-height: 1.4;
  max-width: 100%;
  padding: 0 10px;
}


.method-feature:nth-child(1) .feature-line {
  background: linear-gradient(90deg, #ffe7b3, transparent);
}

.method-feature:nth-child(2) .feature-line {
  background: linear-gradient(90deg, #b1f1cb, transparent);
}

.method-feature:nth-child(3) .feature-line {
  background: linear-gradient(90deg, #b6ecf7, transparent);
}

.method-feature:nth-child(4) .feature-line {
  background: linear-gradient(90deg, #c2e6ff, transparent);
}

.method-feature:nth-child(5) .feature-line {
  background: linear-gradient(90deg, #f4d4f4, transparent);
}

.method-feature:nth-child(6) .feature-line {
  background: linear-gradient(90deg, #fed2e1, transparent);
}

.community-banner {
  background-color: rgba(0, 0, 0, 0.92);
  border-top: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
  padding: 5px 0;
  width: 100%;
  margin: 0 auto 20px auto;
  backdrop-filter: blur(5px);
}

.banner-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-content {
  text-align: center;
}

.banner-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 10px 0;
  color: #ffffff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
}

.banner-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
}

.banner-list li:before {
  content: "-";
  position: absolute;
  left: 0;
}

.banner-flags {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 2px;
}


.carousel-arrow {
  display: none;
}

.scroll-indicator {
  display: none;
}


.partners-testimonials {
  position: relative;
  margin-top: 20px;
  margin: 20px auto 0;
  padding: 15px;
  background-color: #2d2d2d;
  overflow: hidden;
}

.partners-title h2 {
  font-size: clamp(24px, 6vw, 48px);
  margin-bottom: clamp(30px, 8vw, 60px);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.testimonials-carousel-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  margin-bottom: clamp(30px, 8vw, 60px);
}

.testimonials-carousel {
  display: flex;
  width: fit-content;
  animation: scrollMobile 45s linear infinite;
}

@keyframes scrollMobile {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-280px * 10));
  }
}

.testimonial-card {
  background-color: #f5f5f5;
  border-radius: 15px 0 0 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 260px;
  flex: 0 0 auto;
  margin-right: 15px;
  position: relative;
  overflow: hidden;
}

.company-name {
  font-weight: 700;
  font-size: clamp(14px, 4vw, 18px);
  margin-bottom: 15px;
  color: #333;
  text-transform: uppercase;
}

.testimonial-content {
  flex-grow: 1;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.testimonial-content p {
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.6;
  margin-bottom: 12px;
  color: #444;
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-author p:first-child {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: clamp(13px, 3vw, 16px);
}

.testimonial-author p:last-child {
  font-size: clamp(12px, 3vw, 14px);
  color: #666;
}

.testimonials-carousel:hover {
  animation-play-state: paused;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: clamp(20px, 6vw, 40px);
  padding: 0 10px;
}

.cta-button {
  padding: clamp(15px, 4vw, 20px) clamp(20px, 6vw, 40px);
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 300px;
  transform: scale(1);
  border-radius: 8px;
}

.cta-button:hover,
.cta-button:active {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.demo-button {
  background-color: #e8e8e8;
  color: #333;
}

.build-button {
  background-color: #1a1a1a;
  color: white;
}

.arrow-icon {
  font-size: clamp(20px, 5vw, 28px);
  margin-left: 15px;
}


/* Add this to your CSS file */
.status-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  animation: slideIn 0.3s ease-out;
}

.status-message.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.status-message.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.message-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.message-icon {
  display: flex;
  align-items: center;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 480px) {
  .partners-testimonials {
    padding: 20px;
    margin-top: 25px;
  }

  .testimonial-card {
    width: 300px;
    padding: 18px;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .cta-button {
    width: auto;
    min-width: 250px;
  }

  @keyframes scrollMobile {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-320px * 10));
    }
  }
}

.services-list-desktop {
  display: none;
}

@media (min-width: 768px) {
  .partners-testimonials {
    max-width: 1400px;
    margin-top: 30px;
    padding: 20px;
  }

  .testimonial-card {
    width: 350px;
    padding: 20px;
  }

  .cta-button {
    min-width: 300px;
    padding: 20px 40px;
  }

  .testimonials-carousel {
    animation: scroll 60s linear infinite;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-370px * 10));
    }
  }
}

@media screen and (max-width: 767px) {
  .code-showcase {
    margin: 20px 10px;
    width: calc(100% - 20px);
  }

  .code-content code {
    font-size: 12px;
  }

  .main-header-wrapper {
    min-width: 100%;
    width: 100%;
  }


  .main-header-wrapper.with-banner {
    top: 0px !important;
  }

  .main-header {
    border-radius: 0px !important;
  }


}