@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Bai Jamjuree", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(0.3125rem);
  margin: 0 auto;
  padding: 2.625rem 3.6875rem 2.1875rem 5.9375rem;
  overflow: hidden;
  transition: opacity 0.3s, transform 0.3s;
}
header h1 {
  font-family: "Inter", sans-serif;
  font-size: 2.25rem;
  font-weight: 200;
  color: #fff;
  margin: 0;
  text-align: left;
  text-shadow: 0 0.25rem 4.375rem rgba(242, 204, 135, 0.25), 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  font-style: normal;
}
header .logo .logo-desktop {
  display: inline;
}
header .logo .logo-mobile {
  display: none;
}
header .logo .logo-mobile sup {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 300;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 3rem;
  margin-left: 12.5rem;
  border: 0.09375rem solid #fff;
  border-radius: 3rem;
  padding: 0.5625rem 1.0625rem;
  backdrop-filter: blur(0.625rem);
  z-index: 1000;
  transition: opacity 0.3s, transform 0.3s;
}
header nav .nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 3rem;
  list-style: none;
}
header nav .nav-list a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  color: #fff;
  z-index: 999;
}
header nav .nav-list a.active {
  background: linear-gradient(to right, #e7d0fa 0%, #cb97f9 50%, rgba(194, 134, 246, 0.5803921569) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.2s, transform 0.2s;
}
header .btn-signing {
  background-color: #a7a7a7;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 999;
}
header .btn-signing:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
header .btn-signing:active {
  transform: translateY(0);
}
header .btn-signing:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(167, 167, 167, 0.3);
}
header .menu {
  display: none;
}
header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.menu {
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  outline: none;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.menu svg {
  width: 64px;
  height: 48px;
  top: -6px;
  left: -14px;
  stroke: #fff;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
  position: absolute;
}
.menu svg path {
  transition: stroke-dasharray 0.85s ease 0s, stroke-dashoffset 0.85s ease 0s;
  stroke-dasharray: 26px 100px;
  stroke-dashoffset: 126px;
  transform: translateZ(0);
}
.menu svg path:nth-child(2) {
  transition-duration: 0.7s;
  transition-timing-function: ease-in;
  stroke-dashoffset: 100px;
  stroke-dasharray: 26px 74px;
}
.menu svg path:nth-child(3) {
  stroke-dashoffset: 133px;
  stroke-dasharray: 26px 107px;
}
.menu.active svg path {
  stroke-dashoffset: 57px;
}
.menu.active svg path:nth-child(1), .menu.active svg path:nth-child(3) {
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.2, 0.4, 0.2, 1.1);
}
.menu.active svg path:nth-child(2) {
  transition-duration: 0.4s;
  stroke-dashoffset: 2px;
  stroke-dasharray: 1px 74px;
}

@media screen and (max-width: 768px) {
  header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  header h1 {
    font-size: 1.75rem;
  }
  header .logo .logo-desktop {
    display: none;
  }
  header .logo .logo-mobile {
    display: inline;
  }
  header nav {
    margin-left: 1rem;
    gap: 1.5rem;
    padding: 0.5rem 0.875rem;
  }
  header nav .nav-list {
    gap: 1.5rem;
  }
  header nav .nav-list a {
    font-size: 0.875rem;
  }
  header .btn-signing {
    padding: 0.4rem 0.875rem;
    font-size: 0.875rem;
  }
  header .menu {
    display: block;
  }
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 60vw;
  max-width: 350px;
  height: 100vh;
  background: rgba(11, 10, 12, 0);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transition: opacity 0.3s, transform 0.3s;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav-sidebar.active {
  right: 0;
}
.mobile-nav-sidebar .mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-nav-sidebar .mobile-nav-close:hover {
  color: #f2cc87;
}
.mobile-nav-sidebar .mobile-nav-close svg {
  width: 28px;
  height: 28px;
}
.mobile-nav-sidebar .mobile-nav-list {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.mobile-nav-sidebar .mobile-nav-list li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-nav-sidebar .mobile-nav-list li a:hover {
  color: #f2cc87;
  padding-left: 0.5rem;
}
.mobile-nav-sidebar .mobile-nav-list li a.active {
  background: linear-gradient(to right, #e7d0fa 0%, #cb97f9 50%, rgba(194, 134, 246, 0.5803921569) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mobile-nav-sidebar .mobile-lang-switcher {
  margin-top: auto;
  align-self: center;
  width: auto;
  min-width: 80px;
}

.main {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  display: flex;
  z-index: 1;
  overflow: hidden;
  /* Багатошаровий градієнт з кольорів картинки */
  background: radial-gradient(circle at 15% 20%, rgba(148, 93, 255, 0.7) 0%, rgba(165, 100, 223, 0.35) 12%, transparent 35%), radial-gradient(circle at 64% 15%, rgba(175, 68, 164, 0.6) 0%, rgba(225, 82, 210, 0.3) 15%, transparent 40%), radial-gradient(circle at 50% 0%, rgba(71, 34, 144, 0.5) 0%, rgba(148, 93, 255, 0.25) 20%, transparent 45%), radial-gradient(circle at 24% 20%, rgba(167, 54, 205, 0.4) 0%, rgba(167, 54, 205, 0.18) 18%, transparent 42%), linear-gradient(180deg, rgba(18, 10, 27, 0.7) 0%, rgba(10, 5, 15, 0.85) 25%, rgba(5, 2, 10, 0.95) 50%, rgb(0, 0, 0) 70%, rgb(0, 0, 0) 100%), radial-gradient(ellipse at 30% 10%, #1a0d28 0%, #0d0515 25%, #000000 50%, #000000 100%);
  /* Анімований шар поверх фону */
}
.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: radial-gradient(circle at 15% 20%, rgba(0, 0, 0, 0.3) 0%, transparent 40%), radial-gradient(circle at 40% 15%, rgba(199, 87, 188, 0.25) 0%, transparent 45%), radial-gradient(circle at 50% 40%, rgba(148, 93, 255, 0.2) 0%, transparent 50%);
  animation: gentleGlow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* М'яка пульсація світіння */
@keyframes gentleGlow {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
}
.welcome {
  padding: 10rem 3rem 0.1rem 3rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.content_main {
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
  width: 53.25rem;
  max-width: 100%;
  overflow: hidden;
}

.welcome_title {
  font-family: "Bakbak One", cursive;
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-align: left;
}

.welcome_desk {
  color: #d9d9d9;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.swipe-indicator {
  display: none;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.swipe-indicator .swipe-text {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
.swipe-indicator .swipe-arrow {
  width: 24px;
  height: 24px;
  stroke: #fff;
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .main,
  .welcome {
    min-height: 90vh;
    padding: 120px 0 0 0;
    width: 100vw;
  }
  .content_main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 22.7rem;
  }
  .welcome_title {
    font-family: "Bakbak One", cursive;
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
    text-align: left;
    line-height: 1.2;
  }
  .swipe-indicator {
    display: flex;
  }
  .welcome_desk {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}
.background {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.bck {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.bg-elemant {
  margin-right: 16rem;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 12.0625rem;
  padding-right: 6rem;
  max-width: 100%;
  margin-bottom: 4rem;
}

.divbefzag {
  width: 11.6875rem;
  height: 1.75rem;
  flex-shrink: 0;
  aspect-ratio: 187/28;
  display: flex;
  flex-direction: column;
}

.befzag {
  font-family: "Bakbak One", cursive;
  font-size: 1.25rem;
  font-weight: 400;
}

.divzag {
  width: 33.4375rem;
  height: 5.25rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.zag {
  text-shadow: 0 0.25rem 4.375rem rgba(242, 204, 135, 0.25), 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 200;
}

.divabout {
  width: 48.8125rem;
  height: 20.625rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  aspect-ratio: 71/30;
}

.about {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.bottomrow {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .bottomrow {
    flex-direction: column;
    gap: 2rem;
  }
}

.misall,
.visall {
  flex: 1;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.divmis,
.divvis {
  display: flex;
  flex-direction: column;
}

.mis,
.vis {
  font-family: "Bakbak One", cursive;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.divmisabout,
.divvisabout {
  display: flex;
  flex-direction: column;
}

.misabout,
.visabout {
  font-family: "Bai Jamjuree", sans-serif;
  color: #898191;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .background {
    display: none;
  }
}
.footer {
  --hover: #e7e7ec;
  color: #cfcfd6;
  background: #0c0c0e;
  padding: 36px 20px 28px;
  /* ---------- top row ---------- */
  /* UP switch look */
  /* language pills */
  /* ---------- contacts row ---------- */
  /* divider */
  /* ---------- bottom row ---------- */
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer .footer__top,
.footer .footer__contacts,
.footer .footer__bottom {
  margin-inline: auto;
  max-width: 1200px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding-bottom: 24px;
}
.footer__brand {
  min-width: 260px;
}
.footer__title {
  font-family: "Bakbak One", cursive;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px 0;
  text-align: left;
  letter-spacing: 0.02em;
}
.footer__tagline {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #7b4bdb;
  font-weight: 600;
}
.footer__nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__nav-link {
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.footer__nav-link:hover, .footer__nav-link:focus-visible {
  opacity: 1;
  color: #7b4bdb;
}
.footer__toggles {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__toggle-up {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1e;
  border: 1px solid #2a2a30;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.15s, transform 0.15s;
}
.footer__toggle-up .footer__toggle-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-block;
}
.footer__toggle-up .footer__toggle-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.footer__toggle-up:hover {
  border-color: #7b4bdb;
}
.footer__toggle-up:active {
  transform: translateY(1px);
}
.footer__toggle-up:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(198, 132, 255, 0.2);
}
.footer__lang {
  display: inline-flex;
  gap: 8px;
  background: transparent;
}
.footer__lang-btn {
  border: 0;
  background: #1a1a1e;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.footer__lang-btn.is-active {
  background: #ffffff;
  color: #1a1a1e;
}
.footer__lang-btn:hover {
  box-shadow: 0 0 0 1px #7b4bdb inset;
}
.footer__lang-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(198, 132, 255, 0.2);
}
.footer__contacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  padding: 18px 0 22px;
}
.footer .contact {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
}
.footer .contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #121216;
  color: #ffffff;
  outline: 1px solid #2b2b33;
}
.footer .contact__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer .contact__label {
  font-size: 14px;
  color: #9a9aa3;
}
.footer .contact__value {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.footer .contact:hover .contact__value {
  color: #7b4bdb;
}
.footer__rule {
  margin: 8px auto 18px;
  max-width: 1200px;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, #2a2a30 10%, #2a2a30 90%, transparent);
}
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
}
.footer__links {
  display: grid;
  grid-auto-flow: column;
  gap: 32px;
}
.footer__link {
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}
.footer__link:hover, .footer__link:focus-visible {
  color: #7b4bdb;
  opacity: 1;
}
.footer__copy {
  color: #9a9aa3;
  font-size: 14px;
  white-space: nowrap;
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .footer__nav {
    gap: 16px;
  }
  .footer__links {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
  .footer__nav {
    flex-wrap: wrap;
  }
  .footer__toggles {
    justify-content: flex-start;
  }
  .footer__contacts {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer__links {
    grid-auto-flow: row;
  }
  .footer__copy {
    order: 2;
  }
}
@media (hover: hover) {
  .footer .footer__nav-link,
  .footer .footer__link {
    outline: none;
  }
  .footer .footer__nav-link:focus-visible,
  .footer .footer__link:focus-visible {
    box-shadow: 0 0 0 2px rgba(123, 75, 219, 0.5);
    border-radius: 6px;
  }
}
.bg-sphere2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  bottom: 40rem;
  margin-left: 65rem;
}
@media (max-width: 480px) {
  .bg-sphere2 {
    right: 10px;
    bottom: 40px;
    transform: scale(0.7);
  }
}

.bg-sphere1 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  margin-top: 30rem;
  margin-right: 60rem;
}

.Our-Services {
  padding: 2.375rem 0 2.5rem 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 56.25rem;
  flex-shrink: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  z-index: 1;
  position: relative;
}
.Our-Services .title-Service {
  font-family: "Bakbak One", cursive;
  font-size: 2.75rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 0.75rem;
  padding: 0;
}
.Our-Services .p-sabtitle-serv {
  color: #898191;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.375rem;
  padding: 0;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.Our-Services .box,
.Our-Services .box-second-line {
  display: flex;
  flex-direction: row;
  gap: 1.375rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.Our-Services .box.box-second-line,
.Our-Services .box-second-line.box-second-line {
  margin-top: 1.25rem;
}
.Our-Services .box-content {
  background: rgba(137, 134, 134, 0.01);
  border-radius: 1.75rem;
  border: 1px solid #fff;
  backdrop-filter: blur(34px);
  padding: 1.875rem 1.25rem 0.625rem 1.25rem;
  height: 21rem;
  min-height: 15.5rem;
  width: 100%;
  max-width: 20.5rem;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.2s;
}
.Our-Services .box-content:hover {
  box-shadow: 0 0.5rem 2rem rgba(85, 61, 141, 0.7803921569);
  transform: translateY(-0.3125rem) scale(1.04);
}
.Our-Services .box-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.875rem;
}
.Our-Services .box-vector {
  width: 4rem;
  height: 3.9375rem;
  flex-shrink: 0;
  background: #464647;
  border-radius: 1.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0.25rem 0.625rem 1rem #000);
  transition: filter 0.2s;
}
.Our-Services .box-vector svg {
  transition: transform 0.3s cubic-bezier(0.4, 2, 0.6, 1), filter 0.3s;
  width: 2.9621rem;
  height: 2.8839rem;
  flex-shrink: 0;
}
.Our-Services .box-vector:hover svg {
  transform: scale(1.12) rotate(-6deg);
  filter: drop-shadow(0 0.25rem 1rem rgba(194, 134, 246, 0.8));
}
.Our-Services .box-vector:hover {
  filter: drop-shadow(0.25rem 0.625rem 1.5rem #000);
}
.Our-Services .titleforbox {
  font-family: "Bakbak One", cursive;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.2rem 0;
  padding: 0 1rem;
}
.Our-Services .p-sab-serv {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1rem;
  color: #d1d1d1;
  margin-bottom: 0.75rem;
  padding: 0 1rem;
  line-height: 1.5;
}
.Our-Services .list-for-item {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  list-style: none;
  padding: 0 1rem;
}
.Our-Services .list-for-item li {
  position: relative;
  padding-left: 1.625rem;
  margin-bottom: 0.5rem;
}
.Our-Services .list-for-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M6 12L10.2426 16.2426L18.727 7.75732" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  margin-right: 0.75rem;
  display: inline-block;
  vertical-align: middle;
}
.Our-Services .tree {
  filter: drop-shadow(0.25rem 0.25rem 0.625rem #000);
}
.Our-Services .box .box-content:nth-child(1) {
  padding: 2.5rem 1rem 2.5rem;
}
.Our-Services .box .box-content:nth-child(1) .titleforbox {
  padding: 0;
  margin-bottom: 0.75rem;
}
.Our-Services .box .box-content:nth-child(1) .p-sab-serv {
  padding: 0;
  margin-bottom: 1rem;
}
.Our-Services .box .box-content:nth-child(1) .list-for-item {
  padding: 0;
}
.Our-Services .box .box-content:nth-child(1) .list-for-item li {
  margin-bottom: 1rem;
}
.Our-Services .box .box-content:nth-child(2) {
  padding: 2.5rem 1rem 2.5rem;
}
.Our-Services .box .box-content:nth-child(2) .titleforbox {
  padding: 0;
  margin-bottom: 0.75rem;
}
.Our-Services .box .box-content:nth-child(2) .p-sab-serv {
  padding: 0;
  margin-bottom: 1rem;
}
.Our-Services .box .box-content:nth-child(2) .list-for-item {
  padding: 0;
}
.Our-Services .box .box-content:nth-child(2) .list-for-item li {
  margin-bottom: 0.625rem;
}
.Our-Services .box .box-content:nth-child(3) {
  padding: 2.5rem 1rem 2.5rem;
}
.Our-Services .box .box-content:nth-child(3) .titleforbox {
  padding: 0;
  margin-bottom: 0.75rem;
}
.Our-Services .box .box-content:nth-child(3) .p-sab-serv {
  padding: 0;
  margin-bottom: 1rem;
}
.Our-Services .box .box-content:nth-child(3) .list-for-item {
  padding: 0;
}
.Our-Services .box .box-content:nth-child(3) .list-for-item li {
  margin-bottom: 0.625rem;
}
.Our-Services .box-second-line .box-content:nth-child(1) {
  padding: 2.5rem 1rem 2.5rem;
}
.Our-Services .box-second-line .box-content:nth-child(1) .titleforbox {
  padding: 0;
  margin-bottom: 0.75rem;
}
.Our-Services .box-second-line .box-content:nth-child(1) .p-sab-serv {
  padding: 0;
  margin-bottom: 1rem;
}
.Our-Services .box-second-line .box-content:nth-child(1) .list-for-item {
  padding: 0;
}
.Our-Services .box-second-line .box-content:nth-child(1) .list-for-item li {
  margin-bottom: 1.625rem;
}
.Our-Services .box-second-line .box-content:nth-child(2) {
  padding: 2.5rem 1rem 2.5rem;
}
.Our-Services .box-second-line .box-content:nth-child(2) .titleforbox {
  padding: 0;
  margin-bottom: 0.75rem;
}
.Our-Services .box-second-line .box-content:nth-child(2) .p-sab-serv {
  padding: 0;
  margin-bottom: 1rem;
}
.Our-Services .box-second-line .box-content:nth-child(2) .list-for-item {
  padding: 0;
}
.Our-Services .box-second-line .box-content:nth-child(2) .list-for-item li {
  margin-bottom: 1.625rem;
}

@media screen and (max-width: 768px) {
  .Our-Services {
    height: auto;
    padding: 2rem 0;
    overflow: hidden;
  }
  .Our-Services .title-Service {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .Our-Services .p-sabtitle-serv {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  .Our-Services .box,
  .Our-Services .box-second-line {
    display: none;
  }
  .Our-Services .box-content:hover {
    box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12);
    transform: none;
  }
  .services-carousel-container {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 1rem 2rem 1rem;
  }
  .services-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .services-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  .box-content {
    flex: 0 0 calc(100% - 3rem);
    max-width: calc(100% - 3rem);
    scroll-snap-align: center;
    height: auto;
    min-height: 22rem;
    padding: 1.5rem 1.25rem;
    margin: 0;
  }
  .box-content:first-child {
    margin-left: 1rem;
  }
  .box-content:last-child {
    margin-right: 1rem;
  }
  .services-carousel-wrapper::after {
    content: "";
    flex: 0 0 1.5rem;
    height: 1px;
  }
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
  }
  .carousel-indicators .indicator.active {
    width: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
  }
  .box-header {
    margin-bottom: 1rem;
  }
  .box-vector {
    width: 3.5rem;
    height: 3.5rem;
  }
  .titleforbox {
    font-size: 1.25rem;
    padding: 0 0.75rem;
  }
  .p-sab-serv {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    padding: 0 0.75rem;
  }
  .list-for-item {
    font-size: 0.875rem;
    padding: 0 0.75rem;
  }
  .list-for-item li {
    padding-left: 1.5rem;
    white-space: normal;
  }
  .list-for-item li::before {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem 1.25rem;
  }
  .services-carousel-wrapper .box-content:nth-child(1) {
    padding: 1rem 0.6rem;
  }
  .services-carousel-wrapper .box-content:nth-child(1) .titleforbox {
    padding: 0 0.5rem;
  }
  .services-carousel-wrapper .box-content:nth-child(1) .p-sab-serv {
    padding: 0 0.5rem;
  }
  .services-carousel-wrapper .box-content:nth-child(1) .list-for-item {
    padding: 0 0.5rem;
  }
  .services-carousel-wrapper .box-content:nth-child(2) {
    padding: 1.5rem 1rem;
  }
  .services-carousel-wrapper .box-content:nth-child(2) .titleforbox {
    padding: 0 0.5rem;
  }
  .services-carousel-wrapper .box-content:nth-child(2) .p-sab-serv {
    padding: 0 0.5rem;
  }
  .services-carousel-wrapper .box-content:nth-child(2) .list-for-item {
    padding: 0 0.5rem;
  }
  .services-carousel-wrapper .box-content:nth-child(3) {
    padding: 1.5rem 1.25rem;
  }
  .services-carousel-wrapper .box-content:nth-child(3) .titleforbox {
    padding: 0 0.5rem;
  }
  .services-carousel-wrapper .box-content:nth-child(3) .p-sab-serv {
    padding: 0 0.5rem;
  }
  .services-carousel-wrapper .box-content:nth-child(3) .list-for-item {
    padding: 0 0.5rem;
  }
  .services-carousel-wrapper .box-content:nth-child(4) {
    padding: 1.5rem 1.25rem;
  }
  .services-carousel-wrapper .box-content:nth-child(4) .titleforbox {
    padding: 0 0.25rem;
  }
  .services-carousel-wrapper .box-content:nth-child(4) .p-sab-serv {
    padding: 0 0.25rem;
  }
  .services-carousel-wrapper .box-content:nth-child(4) .list-for-item {
    padding: 0 0.25rem;
  }
  .services-carousel-wrapper .box-content:nth-child(5) {
    padding: 1.5rem 1.25rem;
  }
  .services-carousel-wrapper .box-content:nth-child(5) .titleforbox {
    padding: 0 0.25rem;
  }
  .services-carousel-wrapper .box-content:nth-child(5) .p-sab-serv {
    padding: 0 0.25rem;
  }
  .services-carousel-wrapper .box-content:nth-child(5) .list-for-item {
    padding: 0 0.25rem;
  }
  .bg-sphere1,
  .bg-sphere2 {
    display: none;
  }
}
.technology-carousel {
  width: 100%;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}
@media (prefers-reduced-motion: reduce) {
  .technology-carousel .carousel-item {
    transition: none !important;
    animation: none !important;
  }
  .technology-carousel .carousel-item.central .tech-icon {
    animation: none !important;
  }
  .technology-carousel .carousel-item.central h3 {
    animation: none !important;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  transform-style: preserve-3d;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 6rem;
}

.carousel-item {
  width: 13.5rem;
  height: 16rem;
  position: absolute;
  border-radius: 2.5rem;
  border: 2.368px solid #fff;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 1.4rem 1.2rem;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
  cursor: pointer;
  will-change: transform, opacity, z-index;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.6) translateX(0);
  z-index: 0;
  filter: drop-shadow(0 0 0.48rem rgba(134, 24, 251, 0.3));
}
.carousel-item:hover:not(.central) {
  filter: drop-shadow(0 0 0.2rem rgba(134, 24, 251, 0.5));
}
.carousel-item.far-left {
  opacity: 0.5;
  visibility: visible;
  transform: scale(0.85) translateX(-550px);
  z-index: 1;
}
.carousel-item.adjacent-left {
  opacity: 0.85;
  visibility: visible;
  transform: scale(0.95) translateX(-280px);
  z-index: 2;
}
.carousel-item.central {
  opacity: 1;
  visibility: visible;
  transform: scale(1.15) translateX(0);
  z-index: 3;
  filter: drop-shadow(0 0 0.8rem rgba(134, 24, 251, 0.6));
  border-color: rgba(134, 24, 251, 0.9);
  box-shadow: 0 0 20px rgba(134, 24, 251, 0.4), inset 0 0 15px rgba(134, 24, 251, 0.15);
}
.carousel-item.adjacent-right {
  opacity: 0.85;
  visibility: visible;
  transform: scale(0.95) translateX(280px);
  z-index: 2;
}
.carousel-item.far-right {
  opacity: 0.5;
  visibility: visible;
  transform: scale(0.85) translateX(550px);
  z-index: 1;
}
.carousel-item h3 {
  color: #fff;
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0.6rem 0rem 0.3rem 0.4rem;
  font-family: "Bakbak One", cursive, sans-serif, cursive;
  text-align: left;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.carousel-item p {
  color: #fff;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  max-width: 100%;
  margin-left: 0.4rem;
  width: 100%;
  line-height: 1.4;
  opacity: 0.9;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.central .carousel-item h3 {
  font-size: 1.2rem;
  font-weight: 500;
}
.central .carousel-item p {
  opacity: 1;
  font-size: 0.9rem;
}

.tech-icon {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}
.tech-icon.go, .tech-icon.java, .tech-icon.typescript, .tech-icon.python, .tech-icon.node, .tech-icon.react {
  width: 5rem;
  height: 5rem;
  padding: 0;
}
.tech-icon.kotlin {
  height: 5.2rem;
}
.tech-icon.docker {
  padding-bottom: 0.5rem;
}
.tech-icon.typescript {
  border-radius: 0.7rem;
  flex-shrink: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(134, 24, 251, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}
.carousel-indicators .indicator:hover {
  border-color: rgba(134, 24, 251, 0.8);
  transform: scale(1.1);
}
.carousel-indicators .indicator.active {
  background: rgba(134, 24, 251, 0.8);
  border-color: rgb(134, 24, 251);
  transform: scale(1.2);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Адаптивність */
@media (max-width: 768px) {
  .carousel-item {
    width: 10rem;
    height: 13rem;
    padding: 1rem 0.8rem;
  }
  .tech-icon {
    width: 4rem;
    height: 4rem;
  }
  .tech-icon.go, .tech-icon.kotlin, .tech-icon.java, .tech-icon.typescript, .tech-icon.python, .tech-icon.node, .tech-icon.react {
    width: 4rem;
    height: 4rem;
  }
  .carousel-item h3 {
    font-size: 1rem;
    margin: 0.4rem 0rem 0.2rem 0.3rem;
  }
  .carousel-item p {
    font-size: 0.7rem;
    line-height: 1.3;
    -webkit-line-clamp: 3;
    margin-left: 0.3rem;
  }
  .carousel-item.far-left,
  .carousel-item.far-right {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .carousel-item.adjacent-left {
    visibility: visible;
    transform: scale(0.75) translateX(-170px);
  }
  .carousel-item.central {
    visibility: visible;
    transform: scale(1) translateX(0);
  }
  .carousel-item.adjacent-right {
    visibility: visible;
    transform: scale(0.75) translateX(170px);
  }
  .carousel-container {
    height: 15rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .carousel-item.far-left {
    visibility: visible;
    transform: scale(0.8) translateX(-500px);
  }
  .carousel-item.adjacent-left {
    visibility: visible;
    transform: scale(1) translateX(-250px);
  }
  .carousel-item.central {
    visibility: visible;
  }
  .carousel-item.adjacent-right {
    visibility: visible;
    transform: scale(1) translateX(250px);
  }
  .carousel-item.far-right {
    visibility: visible;
    transform: scale(0.8) translateX(500px);
  }
}
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-in-out 0.5s forwards;
}

/* Keyframes */
@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 3px rgba(134, 24, 251, 0.2);
  }
  50% {
    text-shadow: 0 0 6px rgba(134, 24, 251, 0.4), 0 0 12px rgba(134, 24, 251, 0.2);
  }
}
@keyframes iconBreathing {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.02) rotate(0.5deg);
    filter: brightness(1.05);
  }
}
@keyframes breathing {
  0%, 100% {
    transform: scale(1.2) translateX(0);
    filter: drop-shadow(0 0 0.6rem rgba(134, 24, 251, 0.5));
    box-shadow: 0 0 12px rgba(134, 24, 251, 0.15), inset 0 0 12px rgba(134, 24, 251, 0.05), 0 0 0 1px rgba(134, 24, 251, 0.1);
    border-color: rgba(134, 24, 251, 0.6);
  }
  50% {
    transform: scale(1.21) translateX(0);
    filter: drop-shadow(0 0 1rem rgba(134, 24, 251, 0.7));
    box-shadow: 0 0 20px rgba(134, 24, 251, 0.25), inset 0 0 18px rgba(134, 24, 251, 0.1), 0 0 0 2px rgba(134, 24, 251, 0.2);
    border-color: rgba(134, 24, 251, 0.8);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bgtel {
  background-size: cover;
  background-position: center;
  width: auto;
  height: 16.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.boxtel {
  background-color: #000;
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 87.75rem;
  height: 10.9375rem;
  align-self: center;
  border-radius: 1.875rem;
  border: solid #898191 0.125rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.divtexttel {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.625rem;
  margin-left: 5.6875rem;
}

.divformtel {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.5625rem;
  margin-left: 7.5625rem;
}

.form-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.75rem;
}

.phone-input-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  border: 1px solid #fff;
  border-radius: 1.75rem;
  background: #464647;
  padding: 0.5rem 0.75rem;
  transition: opacity 0.2s, transform 0.2s;
  width: 21.4375rem;
  height: 2.375rem;
}
.phone-input-box:focus-within {
  border-color: #898191;
  box-shadow: 0 0 0 3px rgba(198, 132, 255, 0.1);
}

.country-select {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-family: "Bai Jamjuree", sans-serif;
  cursor: pointer;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.country-select option {
  background: #2a2a2b;
  color: #fff;
}

.formtel {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-family: "Bai Jamjuree", sans-serif;
  flex: 1;
  width: 100%;
  padding: 0;
}
.formtel::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.intr {
  color: #fff;
  font-family: "Bakbak One", cursive;
  font-size: 2rem;
  font-weight: 400;
  width: 12.5rem;
}

.ready {
  color: #898191;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  width: 31.5rem;
}

.phonenum {
  color: #fff;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 1.75rem;
  border: 1px solid #fff;
  background: #464647;
  width: 21.4375rem;
  height: 2.375rem;
  flex-shrink: 0;
}

.buttontel {
  color: #000;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  border-radius: 1.75rem;
  background: #d9d9d9;
  width: 9.3125rem;
  height: 2.375rem;
  flex-shrink: 0;
  margin-left: 3.5625rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.buttontel:hover {
  background: rgb(242.5, 242.5, 242.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 132, 255, 0.3);
}
.buttontel:active {
  transform: translateY(0);
}
.buttontel:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(198, 132, 255, 0.3);
}
.buttontel:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media screen and (max-width: 768px) {
  .bgtel {
    height: auto;
    padding: 2rem 1rem;
  }
  .boxtel {
    flex-direction: column;
    height: auto;
    padding: 2rem 1.5rem;
    max-width: 100%;
    gap: 1.5rem;
    align-items: stretch;
  }
  .divtexttel {
    margin-left: 0;
    text-align: center;
    align-items: center;
    gap: 0.75rem;
  }
  .intr {
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
  }
  .ready {
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
    line-height: 1.4;
  }
  .disMiniphone {
    display: none;
  }
  .divformtel {
    margin-left: 0;
    width: 100%;
    align-items: stretch;
    gap: 0.75rem;
  }
  .divformtel p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .form-row {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .phone-input-box {
    width: 100%;
    height: 2rem;
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .phone-input-box input {
    align-items: center;
    margin: 0;
  }
  .country-select {
    font-size: 0.875rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
  }
  .formtel {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .buttontel {
    margin-top: 1rem;
    width: 100%;
    height: 2rem;
    margin-left: 0;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .intr {
    font-size: 1.25rem;
  }
  .ready {
    font-size: 0.875rem;
  }
  .phone-input-box {
    height: 2.5rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .phone-input-box input {
    align-items: center;
    margin: 0;
  }
  .country-select {
    font-size: 0.875rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
  }
  .formtel {
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.25rem 0;
  }
  .buttontel {
    height: 2.5rem;
  }
}
.portfolio-section {
  width: 100%;
  min-height: 100vh;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #21112f 1%, #0c0611 25%, #0d0415 60%, #060209 80%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.portfolio-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.bento-grid-wrapper {
  flex: 1;
  max-width: 850px;
}

.portfolio-title {
  font-family: "Bakbak One", cursive;
  font-size: 2.75rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
  width: 100%;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  grid-auto-flow: dense;
}

.bento-item {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}
.bento-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(134, 24, 251, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(134, 24, 251, 0.2);
}
.bento-item.active {
  border-color: rgba(134, 24, 251, 0.6);
  box-shadow: 0 0 20px rgba(134, 24, 251, 0.3);
}

.bento-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bento-item:hover .bento-content img {
  transform: scale(1.05);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

.project-panel {
  width: 400px;
  min-width: 400px;
  background: rgba(20, 10, 30, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  transition: all 0.3s ease;
}

.panel-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}
.panel-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(134, 24, 251, 0.5);
  transform: rotate(90deg);
}

.panel-content {
  margin-top: 0;
}

.panel-title {
  font-family: "Bakbak One", cursive;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.panel-description {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1rem;
  color: #898191;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.panel-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.detail-value {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
}

.panel-link {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(134, 24, 251, 0.8);
  color: #fff;
  text-decoration: none;
  border-radius: 0.75rem;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.panel-link:hover {
  background: rgb(134, 24, 251);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(134, 24, 251, 0.4);
}

.panel-overlay {
  display: none;
}

.portfolio-carousel-container {
  display: none;
}

@media screen and (max-width: 1024px) {
  .portfolio-container {
    flex-direction: column;
  }
  .bento-grid-wrapper {
    max-width: 100%;
  }
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .project-panel {
    width: 100%;
    min-width: auto;
    position: relative;
    top: 0;
    max-height: none;
  }
  .bento-large {
    grid-column: span 2;
    grid-row: span 2;
  }
}
@media screen and (max-width: 768px) {
  .portfolio-section {
    padding: 2rem 1rem;
  }
  .portfolio-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .bento-grid-wrapper {
    display: none;
  }
  .project-panel {
    display: none;
  }
  .portfolio-carousel-container {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 0 2rem 0;
  }
  .portfolio-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    gap: 1rem;
    padding: 0 1rem 1rem 1rem;
    scroll-behavior: smooth;
  }
  .portfolio-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  .portfolio-card {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .portfolio-card:first-child {
    margin-left: 7.5%;
  }
  .portfolio-card:last-child {
    margin-right: 7.5%;
  }
  .portfolio-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .portfolio-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .portfolio-card-title {
    font-family: "Bakbak One", cursive;
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    line-height: 1.2;
  }
  .portfolio-card-description {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 0.8rem;
    color: #898191;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .portfolio-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
  }
  .portfolio-card-meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    gap: 0.5rem;
  }
  .portfolio-card-meta-item .label {
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
  }
  .portfolio-card-meta-item .value {
    color: #fff;
    font-weight: 500;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .portfolio-card-link {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: rgba(134, 24, 251, 0.8);
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
  }
  .portfolio-card-link:hover, .portfolio-card-link:active {
    background: rgb(134, 24, 251);
  }
}
.clients-reviews {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  background: linear-gradient(180deg, #000000 0%, #0d0415 100%);
}

.clients-title {
  font-family: "Bakbak One", cursive;
  font-size: 2.75rem;
  font-weight: 400;
  margin: 5rem 0 0 0;
  width: 100%;
  text-align: center;
}

.clients-subtitle {
  color: #898191;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin: 1.125rem auto 2.375rem auto;
  white-space: normal;
  padding: 0;
  max-width: 43.75rem;
}

.testimonials-list {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 2.75rem;
}

.testimonial-card,
.testimonial-card-highlighted {
  border: 1px solid #fff;
  background: #1e1e1e;
  border-radius: 1.75rem;
  width: 25.25rem;
  height: auto;
  min-height: 10rem;
  flex-shrink: 0;
  padding: 1.375rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
}

.client-header {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.client-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}

.client-name {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.client-review {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(137, 129, 145, 0.9);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
  padding-left: 0.25rem;
}

.testimonial-card-highlighted {
  margin: 0 4.625rem;
}

.stars {
  background: transparent;
  color: #ffd700;
  font-size: 0.9375rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  letter-spacing: 0.1rem;
  line-height: 1;
}

.view-all-btn {
  font-family: "Bai Jamjuree", sans-serif;
  margin: 0 auto;
  margin: 0 45.5625rem;
  display: block;
  background: #afafaf;
  color: #222;
  border: none;
  border-radius: 1.375rem;
  padding: 0.625rem 2.125rem;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.1);
}
.view-all-btn:hover {
  background: #fff;
  color: #222;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}
.view-all-btn:active {
  transform: translateY(0);
}
.view-all-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(198, 132, 255, 0.3);
}

.reviews-carousel-container {
  display: none;
}

@media screen and (max-width: 768px) {
  .clients-reviews {
    padding-bottom: 2rem;
  }
  .clients-title {
    font-size: 1.75rem;
    margin: 2rem 0 0 0;
  }
  .clients-subtitle {
    font-size: 1.125rem;
    margin: 0.75rem auto 1.5rem auto;
    padding: 0 1rem;
  }
  .testimonials-list {
    display: none;
  }
  .reviews-carousel-container {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 0 1rem 0;
  }
  .reviews-carousel-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0 1rem;
  }
  .reviews-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  .reviews-carousel-wrapper .testimonial-card,
  .reviews-carousel-wrapper .testimonial-card-highlighted {
    flex: 0 0 85vw;
    max-width: 340px;
    min-width: 260px;
    scroll-snap-align: center;
    margin: 0;
    height: auto;
    min-height: 140px;
  }
}
.team-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0d0415 0%, #000000, #0d0415 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.team-title {
  font-size: 7.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
  font-family: "Bakbak One", cursive;
  background: linear-gradient(to bottom, rgba(134, 24, 251, 0.35) 30%, rgba(255, 255, 255, 0) 76%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 1;
}

.team-carousel-container {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  position: relative;
  perspective: 1000px;
  margin-top: 80px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.team-carousel-container:active {
  cursor: grabbing;
}

.team-carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card {
  position: absolute;
  width: 280px;
  height: 380px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-card.center {
  z-index: 10;
  transform: scale(1.1) translateZ(0);
}
.team-card.center img {
  filter: none;
}
.team-card.left-2 {
  z-index: 1;
  transform: translateX(-400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}
.team-card.left-2 img {
  filter: grayscale(100%);
}
.team-card.left-1 {
  z-index: 5;
  transform: translateX(-200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}
.team-card.left-1 img {
  filter: grayscale(100%);
}
.team-card.right-1 {
  z-index: 5;
  transform: translateX(200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}
.team-card.right-1 img {
  filter: grayscale(100%);
}
.team-card.right-2 {
  z-index: 1;
  transform: translateX(400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}
.team-card.right-2 img {
  filter: grayscale(100%);
}
.team-card.hidden {
  opacity: 0;
  pointer-events: none;
}

.team-member-info {
  text-align: center;
  margin-top: 40px;
  transition: all 0.5s ease-out;
}

.team-member-name {
  color: rgba(134, 24, 251, 0.9);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-family: "Bakbak One", cursive;
}
.team-member-name::before, .team-member-name::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 100px;
  height: 2px;
  background: rgba(134, 24, 251, 0.8);
}
.team-member-name::before {
  left: -120px;
}
.team-member-name::after {
  right: -120px;
}

.team-member-role {
  color: #898191;
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 0;
  margin-top: -15px;
  position: relative;
  font-family: "Bai Jamjuree", sans-serif;
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.team-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(134, 24, 251, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.team-dot.active {
  background: rgba(134, 24, 251, 0.9);
  transform: scale(1.2);
}
.team-dot:hover {
  background: rgba(134, 24, 251, 0.6);
}

.team-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(134, 24, 251, 0.6);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  border: none;
  outline: none;
  padding-bottom: 4px;
}
.team-nav-arrow:hover {
  background: rgba(134, 24, 251, 0.9);
  transform: translateY(-50%) scale(1.1);
}
.team-nav-arrow.left {
  left: 20px;
  padding-right: 3px;
}
.team-nav-arrow.right {
  right: 20px;
  padding-left: 3px;
}

@media screen and (max-width: 1024px) {
  .team-title {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 768px) {
  .team-section {
    padding: 3rem 1rem;
  }
  .team-title {
    font-size: 4rem;
    top: 20px;
    background: linear-gradient(to bottom, rgba(134, 24, 251, 0.6) 20%, rgba(255, 255, 255, 0) 85%);
    -webkit-background-clip: text;
    background-clip: text;
  }
  .team-carousel-container {
    height: 380px;
    margin-top: 60px;
  }
  .team-card {
    width: 200px;
    height: 280px;
  }
  .team-card.left-2 {
    transform: translateX(-250px) scale(0.8) translateZ(-300px);
  }
  .team-card.left-1 {
    transform: translateX(-120px) scale(0.9) translateZ(-100px);
  }
  .team-card.right-1 {
    transform: translateX(120px) scale(0.9) translateZ(-100px);
  }
  .team-card.right-2 {
    transform: translateX(250px) scale(0.8) translateZ(-300px);
  }
  .team-member-name {
    font-size: 2rem;
  }
  .team-member-name::before, .team-member-name::after {
    width: 50px;
  }
  .team-member-name::before {
    left: -70px;
  }
  .team-member-name::after {
    right: -70px;
  }
  .team-member-role {
    font-size: 1.2rem;
  }
  .team-nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  .team-nav-arrow.left {
    left: 10px;
  }
  .team-nav-arrow.right {
    right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .team-title {
    font-size: 2.8rem;
    top: 6rem;
  }
  .team-carousel-container {
    height: 320px;
    margin-top: 50px;
  }
  .team-card {
    width: 160px;
    height: 220px;
  }
  .team-card.left-2 {
    transform: translateX(-200px) scale(0.75) translateZ(-300px);
  }
  .team-card.left-1 {
    transform: translateX(-90px) scale(0.85) translateZ(-100px);
  }
  .team-card.right-1 {
    transform: translateX(90px) scale(0.85) translateZ(-100px);
  }
  .team-card.right-2 {
    transform: translateX(200px) scale(0.75) translateZ(-300px);
  }
  .team-member-name {
    font-size: 1.5rem;
  }
  .team-member-name::before, .team-member-name::after {
    width: 30px;
  }
  .team-member-name::before {
    left: -45px;
  }
  .team-member-name::after {
    right: -45px;
  }
  .team-member-role {
    font-size: 1rem;
  }
  .team-dots {
    margin-top: 40px;
    gap: 8px;
  }
  .team-dot {
    width: 10px;
    height: 10px;
  }
}
.contact-background-container {
  width: 100%;
  background: #0d0415;
  padding: 3.75rem 0;
  min-height: 43.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-bg-decor {
  position: absolute;
  top: 115px;
  left: 60px;
  width: 396px;
  height: 396px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
}

.contact-bg-decor-2 {
  position: absolute;
  bottom: -150px;
  right: -200px;
  width: 736px;
  height: 612px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
}

.contact-title {
  font-family: "Bakbak One", cursive;
  font-size: 2.75rem;
  font-weight: 400;
  text-align: center;
  padding: 0.625rem;
  width: 100%;
}

.contact-subtitle {
  max-width: 43.875rem;
  color: #898191;
  text-align: center;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 auto 2.625rem auto;
  padding: 0 1rem;
}

.contact-flex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
  justify-content: center;
  max-width: 68.75rem;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
}

.contact-form,
.contact-info {
  background: rgba(30, 30, 30, 0.85);
  border: 1px solid #fff;
  border-radius: 1.25rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 37.5rem;
  min-width: 20rem;
  color: #fff;
}

.contact-form {
  flex: 2 1 0;
  width: 43.125rem;
  height: 26.5625rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  border-radius: 1.75rem;
  border: 1px solid #fff;
  background: rgba(217, 217, 217, 0.03);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-sizing: border-box;
  max-width: 100%;
  margin-right: 0;
  z-index: 2;
}

.contact-info {
  width: 355px;
  height: 354px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  min-width: 260px;
  border-radius: 28px;
  border: 1px solid #fff;
  background: rgba(217, 217, 217, 0.02);
  backdrop-filter: blur(5px);
}
.contact-info h4 {
  color: #fff;
  text-align: center;
  font-family: "Bakbak One";
  font-size: 28px;
  font-weight: 400;
  margin-top: 8px;
  margin-left: 8px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 44px;
}
.contact-info li div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 31px;
}
.contact-info li p {
  color: #d9d9d9;
  font-size: 16px;
  font-weight: 400;
}
.contact-info li strong {
  font-family: "Bakbak One";
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}
.contact-info li span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-top: 2px;
  border: 1px solid #898191;
  border-radius: 50%;
  width: 52px;
  height: 51px;
  flex-shrink: 0;
  background: transparent;
  box-sizing: border-box;
  padding: 0;
}
.contact-info li span svg {
  display: block;
  width: 32px;
  height: 32px;
}

.title-form {
  color: #fff;
  font-family: "Bakbak One", cursive;
  font-size: 2rem;
  font-weight: 400;
  margin: 0.5rem 0 0.75rem 0;
  text-align: center;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input {
  flex: 1;
}

.phone-input-box-contact {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 1.125rem;
  background: transparent;
  padding: 0.75rem 1.125rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s;
}
.phone-input-box-contact:focus-within {
  border-color: rgba(198, 132, 255, 0.9960784314);
  box-shadow: 0 0 0 3px rgba(198, 132, 255, 0.1);
}
.phone-input-box-contact .country-select {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.phone-input-box-contact .country-select option {
  background: #2a2a2b;
  color: #fff;
}
.phone-input-box-contact input[type=tel] {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  flex: 1;
  width: 100%;
  padding: 0;
  margin: 0;
}
.phone-input-box-contact input[type=tel]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1.125rem;
  border-radius: 1.125rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  resize: none;
  transition: all 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(198, 132, 255, 0.9960784314);
  box-shadow: 0 0 0 3px rgba(198, 132, 255, 0.15);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form textarea {
  min-height: 5.625rem;
}

.contact-form button {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 1.125rem;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0.2rem auto 0 auto;
  transition: all 0.2s ease;
  width: auto;
  min-width: 70%;
  max-width: 100%;
  display: block;
  margin-bottom: 4rem;
}
.contact-form button:hover {
  background: rgba(198, 132, 255, 0.9960784314);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 132, 255, 0.3);
}
.contact-form button:active {
  transform: translateY(0);
}
.contact-form button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(198, 132, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .contact-background-container {
    padding: 2rem 1rem;
    min-height: auto;
  }
  .contact-title {
    font-size: 2rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .contact-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    color: #fff;
    position: relative;
    z-index: 2;
    background: rgba(16, 8, 32, 0.027);
    padding: 0.5rem 1.2rem;
    display: inline-block;
  }
  .contact-flex {
    flex-direction: column;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .contact-form {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    height: auto;
    padding: 1.5rem 1rem;
    margin: 0;
  }
  .title-form {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-row input {
    width: 100%;
  }
  .phone-input-box-contact {
    width: 100%;
    padding: 0.625rem 1rem;
    margin-bottom: 0.75rem;
  }
  .phone-input-box-contact .country-select {
    font-size: 0.875rem;
  }
  .phone-input-box-contact input[type=tel] {
    font-size: 0.875rem;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  .contact-form textarea {
    min-height: 120px;
  }
  .contact-form button {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .contact-info {
    display: none;
  }
}
@media (max-width: 480px) {
  .contact-bg-decor {
    width: 250px;
    height: 250px;
    top: 80px;
    left: 20px;
  }
  .contact-bg-decor-2 {
    width: 400px;
    height: 332px;
    bottom: -100px;
    right: -100px;
  }
}
.section-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s, transform 0.6s;
}
.section-animate.visible {
  opacity: 1;
  transform: none;
}

.text-center {
  text-align: center !important;
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  header {
    padding: 1.125rem 1rem;
  }
  header h1 {
    font-size: 2.4rem;
  }
  header .logo .logo-desktop {
    display: none;
  }
  header .logo .logo-mobile {
    display: inline;
  }
  header nav {
    display: none;
  }
  header .menu {
    display: block;
    position: relative;
    z-index: 2100;
    margin-left: auto;
  }
  header .btn-signing {
    display: none;
  }
  header .btn-signing.lang-switcher {
    display: block;
    margin-left: 0.5rem;
  }
  .mobile-nav-overlay {
    display: block;
  }
  body.no-scroll {
    overflow: hidden;
  }
}
@media (max-width: 600px) {
  .clients-title {
    font-size: 1.375rem;
    margin: 32px 0 0 0;
  }
  .clients-subtitle {
    font-size: 14px;
    max-width: 98vw;
    margin: 10px auto 18px auto;
  }
  .testimonials-list {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0;
    max-width: 100vw;
  }
  .testimonial-card,
  .testimonial-card-highlighted {
    width: 98vw;
    max-width: 98vw;
    min-width: 0;
    padding: 12px 4px;
    font-size: 14px;
    margin: 0;
    height: auto;
  }
  .testimonial-card-highlighted {
    margin: 0;
  }
  .stars {
    font-size: 15px;
    padding: 2px 8px;
  }
  .view-all-btn {
    font-size: 16px;
    margin: 16px auto 18px auto;
    padding: 8px 0;
    width: 98vw;
    max-width: 300px;
  }
  .background2 {
    height: auto;
    padding: 20px 0;
  }
  .txt {
    width: 98vw;
    margin: 20px 0;
    height: auto;
  }
  .zag2 {
    font-size: 28px;
  }
  .poszag {
    font-size: 14px;
    padding-bottom: 20px;
  }
  body {
    font-size: 0.9375rem;
    padding: 0;
  }
}
@media (prefers-reduced-motion: reduce), (max-width: 480px) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/*# sourceMappingURL=style.css.map */
