@font-face {
  font-family: 'AeonikPro';
  src: url('../font/AeonikPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'AeonikPro';
  src: url('../font/AeonikPro-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'AeonikPro';
  src: url('../font/AeonikPro-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'AeonikPro';
  src: url('../font/AeonikPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: 'AeonikPro';
  font-weight: 400;
}

body {
  background: linear-gradient(180deg, #FDFF8E 0%, #FAFAFA 8%);
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

/* navbar */
header.navbar {
  background: transparent !important;
  padding: 20px 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  mix-blend-mode: difference;
  pointer-events: none;
}

.navbar-inner {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px clamp(24px, 2.5vw, 60px);
  flex-wrap: nowrap;
  pointer-events: auto;
}

.nav-link-item {
  font-size: clamp(13px, 1vw, 20px);
  font-weight: 500;
  color: #ffffff !important;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo img {
  height: clamp(22px, 1.8vw, 40px);
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-contact-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-toggle {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #ffffff !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 300;
  flex-shrink: 0;
}

.nav-hamburger.active {
  position: fixed;
  top: 18px;
  right: 20px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HERO SECTION */
.hero-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-section .container-fluid {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 28px;
}

.hero-section .row {
  flex: 1;
  display: flex;
  align-items: flex-end;
  margin: 0;
  position: relative;
}

.hero-tagline {
  padding-bottom: 130px;
  min-width: 160px;
  margin-left: -30px;
}

.hero-tagline p {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
  color: #757575;
  line-height: 0.2;
}

.hero-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
}

.hero-img {
  width: 60vw;
  max-width: 1200px;
  min-width: 38vw;
  object-fit: contain;
  display: block;
  margin-top: 15%;
  margin-bottom: 15%;
  margin-right: -3%;
  animation: floatUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-ctas {
  padding-bottom: 130px;
  min-width: 160px;
  justify-content: flex-end;
  margin-right: -20px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'AeonikPro', sans-serif;
  font-size: clamp(12px, 0.85vw, 17px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s;
}

.hero-ctas-mobile {
  display: none;
}

.big-bottom-text {
  width: 100%;
  margin-top: -100px;
  padding: 0 25px 110px 25px;
  position: relative;
  z-index: 10;
}

.big-bottom-text span {
  font-family: 'AeonikPro', sans-serif;
  font-weight: 500;
  font-size: 8vw;
  color: #111111;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bbt-row {
  width: 100%;
}

.bbt-row-1 {
  display: flex;
  justify-content: space-between;
}

.bbt-row-2 {
  display: flex;
  justify-content: center;
}

/* stagger per character */
.stagger-word {
  display: inline-flex !important;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.char-clip {
  display: inline-block;
  overflow: visible;
  padding-top: 0.12em;
  margin-top: -0.12em;
  vertical-align: bottom;
}

.stagger-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(4deg);
  animation-name: none;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-duration: 0.65s;
}

.stagger-word.animate .stagger-char {
  animation-name: charDropIn;
}

@keyframes charDropIn {
  0% {
    opacity: 0;
    transform: translateY(110%) rotate(4deg);
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

/* intro section */
.intro-section {
  padding: 50px 0 0 0;
  background-color: #fafafa;
}

.reveal-text {
  width: 75%;
  font-size: 3.8vw;
  font-weight: 500;
  line-height: 1.2;
  background: none;
  color: #BDBDBD;
  text-align: left;
  letter-spacing: -0.02em;
}

.reveal-char {
  display: inline-block;
  color: #BDBDBD;
  transition: color 0.3s ease;
}

.reveal-char.lit {
  color: #111111;
}

.label-side {
  font-size: clamp(16px, 1.4vw, 22px);
  color: #757575;
}

.desc-text {
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.4;
  font-weight: 400;
  color: #757575;
}

.link-more {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #757575;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s;
}

.cta-btn:hover,
.link-more:hover {
  transform: translateX(-8px);
}

.cta-btn::after,
.link-more::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4v8a4 4 0 0 0 4 4h10'/%3E%3Cpolyline points='16 12 20 16 16 20'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4v8a4 4 0 0 0 4 4h10'/%3E%3Cpolyline points='16 12 20 16 16 20'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-btn:hover::after,
.link-more:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FDFF8E 0%, #FAFAFA 90%);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 100px 32px;
  gap: 8px;
}

.mobile-menu-item {
  font-family: 'AeonikPro', sans-serif;
  font-size: 6vw;
  font-weight: 500;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open .mobile-menu-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.mobile-menu.open .mobile-menu-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.10s;
}

.mobile-menu.open .mobile-menu-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.mobile-menu.open .mobile-menu-item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.20s;
}

.mobile-menu.open .mobile-menu-item:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.mobile-menu-lang {
  font-size: 5vw;
  color: #757575;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 16px;
}

/* project showcase section */
.project-showcase {
  background-color: #111111;
  position: relative;
}

.ps-sticky-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.ps-content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 5;
  margin-top: 10vh; 
}

.ps-counter-top {
  margin-left: calc(30vw + 16px); 
  margin-bottom: 0; 
  color: #ffffff;
  font-family: 'AeonikPro', sans-serif;
  display: flex;
  align-items: baseline;
}

.ps-counter-top .ps-num-current {
  font-size: 3.8vw;
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.ps-counter-top .ps-num-total {
  font-size: 2.5vw;
  font-weight: 500;
  color: #FFFFFF;
  margin-left: 5px;
  margin-bottom: 0;
}

.ps-horizontal-viewport {
  width: 100vw;
  height: max-content;
  display: flex;
  align-items: center;
  position: relative;
}

.ps-sticky-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-image: url('../images/norm-text.png');
  background-repeat: no-repeat; 
  background-size: cover; 
  background-position: center bottom; 
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay; 
  opacity: 0.7;
}

.ps-horizontal-track {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 30vw; 
  padding-right: 30vw; 
  will-change: transform;
}

.ps-project-item {
  flex: 0 0 40vw; 
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 4vw;
  will-change: transform;
}

.ps-card-inner {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-color: #111111;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px 20px;
  box-sizing: border-box;
}

.ps-img-wrap {
  width: 100%;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.ps-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-info-wrap {
  height: auto;
  padding: 24px 0 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.ps-title {
  color: #ffffff;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 600;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.ps-categories {
  display: flex;
  gap: 16px;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.ps-categories span {
  color: #FFFFFF;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
}

.services-intro-section {
  padding: 200px 0 200px 0;
  position: relative;
  z-index: 10;
}

.services-intro-row {
  align-items: flex-start;
  margin-left: -20px;
}

.si-label {
  font-size: clamp(16px, 1.4vw, 22px);
  color: #757575;
  font-weight: 400;
  display: inline-block;
  margin-top: 15px;
}

.si-statement {
  font-size: 3.8vw;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 95%;
}

.si-text-dark {
  color: #111111;
}

.si-text-gray {
  color: #BDBDBD;
}

.si-desc {
  font-size: clamp(16px, 1.4vw, 22px);
  color: #757575;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 15px;
  margin-right: 5px;
  max-width: clamp(160px, 14vw, 260px);
}

.services-detail-section {
  padding-bottom: 200px;
}

.service-content-wrapper {
  padding: 50px 0 40px 0;
}

.service-divider {
  border: 0;
  border-top: 1px solid #BDBDBD;
  margin: 0 0 0 clamp(30px, 3vw, 70px);
  transition: border-color 0.6s ease;
}

.service-number-box {
  width: clamp(30px, 3vw, 70px);
  flex-shrink: 0;
}

.service-text-box {
  flex-grow: 1;
}

.service-number {
  font-size: clamp(13px, 1vw, 22px);
  font-weight: 500;
  color: #BDBDBD;
  display: inline-block;
  transition: color 0.6s ease;
}

.service-title {
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: #BDBDBD;
  line-height: 1;
  transition: color 0.6s ease;
}

.service-header-row {
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: clamp(16px, 1.4vw, 22px);
  color: #BDBDBD;
  margin-bottom: 10px;
  padding-left: 0;
  transition: color 0.6s ease;
}

.service-list li::before {
  content: "\2022";
  color: #BDBDBD;
  margin-right: 15px;
  display: inline-block;
  transition: color 0.6s ease;
}

.service-item.active .service-divider {
  border-color: #111111;
}

.service-item.active .service-number,
.service-item.active .service-title,
.service-item.active .service-list li,
.service-item.active .service-list li::before {
  color: #111111 !important;
}

.service-image-col {
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image-viewport {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, left;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item.active .service-image-viewport {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-section {
  padding: 0 0 50px 0;
  overflow: hidden;
}

.testimonial-title-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.testimonial-title {
  font-size: 8vw;
  font-weight: 500;
  line-height: 1;
  color: #111111;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.text-left {
  align-self: flex-start;
  text-align: left;
  position: relative;
  padding-left: 12vw;
}

.text-right {
  align-self: flex-end;
  text-align: right;
  padding-right: 9vw;
  margin-top: 20px;
}

.quote-mark {
  position: absolute;
  left: -15px;
  top: 5px;
  color: #BDBDBD;
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.55em;
  line-height: 1;
}

.testimonial-main-content {
  margin-top: 150px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.testi-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.testi-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.testi-slide {
  flex: 0 0 65vw;
  max-width: 900px;
  padding: 0 30px;
  opacity: 0.2;
  transition: opacity 0.6s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.testi-slide.active {
  opacity: 1;
}

.testimonial-avatar {
  width: clamp(200px, 18vw, 420px);
  aspect-ratio: 25 / 28;
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-text {
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.5;
  color: #111111;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.quote-author {
  margin-top: 30px;
}

.author-name {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 700;
  margin-bottom: 2px;
  color: #424242;
}

.author-position {
  font-size: clamp(16px, 1.4vw, 22px);
  color: #757575;
  margin: 0;
}

.testimonial-footer {
  margin-top: 40px;
}

.testimonial-footer .d-flex.gap-4 {
  align-items: flex-end !important;
}

.testimonial-pagination {
  font-family: 'AeonikPro', sans-serif;
  font-weight: 500;
  transform: translateY(0.8vw);
}

.testimonial-pagination .current {
  font-size: 7vw;
  color: #111111;
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.testimonial-pagination .total {
  font-size: 2.5vw;
  font-weight: 500;
  color: #111111;
}

.testimonial-nav-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-btn {
  width: clamp(44px, 3.5vw, 72px);
  height: clamp(44px, 3.5vw, 72px);
  border-radius: 50%;
  border: 1px solid #BDBDBD;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  color: #111111;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.next-btn-wrapper {
  position: relative;
  width: clamp(44px, 3.5vw, 72px);
  height: clamp(44px, 3.5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.next-btn-wrapper .nav-btn {
  border: none;
}

.icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(20px, 1.6vw, 32px);
  height: clamp(20px, 1.6vw, 32px);
  font-size: clamp(20px, 1.6vw, 32px);
}

.icon-wrap i {
  position: absolute;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (min-width: 1025px) {
  .prev .icon-main {
    transform: translateX(0);
  }

  .prev .icon-alt {
    transform: translateX(70px);
  }

  .prev:hover .icon-main {
    transform: translateX(-70px);
  }

  .prev:hover .icon-alt {
    transform: translateX(0);
  }

  .next .icon-main {
    transform: translateX(0);
  }

  .next .icon-alt {
    transform: translateX(-70px);
  }

  .next:hover .icon-main {
    transform: translateX(70px);
  }

  .next:hover .icon-alt {
    transform: translateX(0);
  }
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.progress-ring-circle {
  stroke-dasharray: 170 170;
  stroke-dashoffset: 170;
}

/* animation */
.scroll-slide-left {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.scroll-slide-right {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.scroll-slide-left.is-visible,
.scroll-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.blog-intro-section {
  padding: 200px 0 150px 0;
}

.blog-slider-section {
  padding-bottom: 120px;
  overflow-x: hidden;
  z-index: 16;
  transition: background-color 0.6s ease;
}

.blog-custom-container {
  padding-left: clamp(24px, 2.5vw, 60px);
}

.blog-slider-container {
  display: block;
  position: relative;
  overflow: hidden;
  width: calc(100% + 1.5rem);
  margin-right: -1.5rem;
}

.blog-slider-section .link-more,
.blog-slider-section .blog-title,
.blog-slider-section .blog-title a,
.blog-slider-section .nav-btn,
.blog-slider-section .nav-btn i {
  transition: color 0.6s ease, border-color 0.6s ease, background-color 0.6s ease;
}

.blog-slider-section.dark-mode {
  background-color: #111111;
}

.blog-slider-section.dark-mode .link-more,
.blog-slider-section.dark-mode .blog-title,
.blog-slider-section.dark-mode .blog-title a {
  color: #ffffff !important;
}

.blog-slider-section.dark-mode .nav-btn i {
  color: #ffffff !important;
}

.blog-slider-section.dark-mode .nav-btn {
  border-color: #ffffff !important;
}

.blog-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.blog-card {
  flex: 0 0 calc((100% - 48px) / 2.5) !important;
  width: calc((100% - 48px) / 2.5) !important;
  max-width: calc((100% - 48px) / 2.5) !important;
  display: flex;
  flex-direction: column;
}

.blog-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-color: #E0E0E0;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 6px;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-title {
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 500;
  color: #111111;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title a {
  transition: opacity 0.3s ease;
}

.blog-title a:hover {
  opacity: 0.7;
}

.blog-nav-btns .nav-btn {
  width: clamp(44px, 3.5vw, 72px);
  height: clamp(44px, 3.5vw, 72px);
  border: 1px solid #111;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: clamp(18px, 1.6vw, 32px);
  color: #111111;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (hover: hover) {
  .blog-nav-btns .nav-btn:hover {
    background: #111111;
    color: #fff;
  }
}

.blog-nav-btns .nav-btn:active {
  background: #111111 !important;
  color: #fff !important;
  transform: scale(0.95);
  transition: none !important;
}

.blog-nav-btns .nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.footer-section {
  color: #111111;
  height: 200vh;
  position: relative;
  z-index: 20;
  transition: background-color 0.6s ease, color 0.6s ease;
}

.footer-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.footer-text-wrap {
  display: flex;
  flex-direction: column;
}

.footer-line {
  position: relative;
  overflow: hidden;
  height: 1.3em;
  line-height: 1.3em;
  font-size: 7vw;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.2vw;
}

.footer-text-wrap .footer-line:last-child {
  margin-bottom: 0 !important;
}

.footer-line .text-old {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: #ffffff;
  justify-content: flex-start !important;
  text-align: left;
  transition: color 0.6s ease;
  will-change: clip-path;
}

.footer-line .text-new {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background-color: transparent;
  will-change: clip-path;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  justify-content: flex-start !important;
  text-align: left;
  transition: background-color 0.6s ease, color 0.6s ease;
}

.footer-line span {
  display: block;
  height: 1.1em;
}

.footer-text-wrap .footer-line:nth-child(1) .text-old,
.footer-text-wrap .footer-line:nth-child(1) .text-new {
  padding-left: 20vw;
}

.footer-text-wrap .footer-line:nth-child(2) .text-old,
.footer-text-wrap .footer-line:nth-child(2) .text-new {
  padding-left: 40vw;
}

.footer-text-wrap .footer-line:nth-child(3) .text-old,
.footer-text-wrap .footer-line:nth-child(3) .text-new {
  padding-left: 30vw;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #111111;
  color: #ffffff;
  padding: clamp(10px, 0.9vw, 20px) clamp(20px, 1.8vw, 38px);
  border-radius: 50px;
  font-size: clamp(12px, 0.9vw, 20px);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-btn i {
  font-size: clamp(16px, 1.5vw, 28px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-btn:hover {
  transform: scale(1.05);
}

.footer-btn:hover i {
  transform: translateX(4px);
}

.footer-section.dark-mode {
  background-color: #111111;
}

.footer-section.dark-mode .footer-line .text-old {
  color: #ffffff;
}

.footer-section.dark-mode .footer-line .text-new {
  background-color: transparent;
  color: #ffffff;
}

.footer-section.dark-mode .footer-btn {
  background-color: #ffffff;
  color: #111111;
}

.footer-section.dark-mode .footer-btn .arrow-wrap {
  background-color: #E0E0E0;
}

.footer-cursor-btn {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #ffffff;
  color: #111111;
  padding: clamp(10px, 0.9vw, 20px) clamp(20px, 1.8vw, 38px);
  border-radius: 50px;
  font-family: 'AeonikPro', sans-serif;
  font-size: clamp(12px, 0.9vw, 20px);
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease,
    color 0.3s ease;
  will-change: left, top;
}

.footer-cursor-btn i {
  font-size: clamp(16px, 1.5vw, 28px);
}

.footer-cursor-btn.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* .footer-cursor-btn.dark {
  background-color: #ffffff;
  color: #111111;
} */

.final-footer-section {
  background-color: #111111;
  color: #ffffff;
  position: relative;
  padding-top: 100px;
  padding-bottom: 300px;
  overflow: hidden;
  z-index: 25;
}

.final-left-col {
  position: relative;
  z-index: 5;
  padding-left: 2vw;
}

.contact-info p {
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.6;
  margin-bottom: 4px;
  font-weight: 400;
  color: #e0e0e0;
}

.copyright p {
  font-size: clamp(16px, 1.4vw, 22px);
  color: #757575;
  margin-bottom: 0;
  line-height: 1;
}

.final-right-col {
  position: relative;
  z-index: 5;
  padding-right: 4vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.social-links-wrap {
  text-align: left;
}

.social-title {
  color: #BDBDBD;
  margin-bottom: 24px;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.social-list a {
  font-size: clamp(32px, 2.5vw, 64px);
  font-weight: 500;
  text-decoration: none;
  color: #757575;
  transition: color 0.4s ease, transform 0.4s ease;
  letter-spacing: -0.02em;
  display: inline-block;
  line-height: 1;
}

.social-list a.active,
.social-list a:hover {
  color: #ffffff;
  transform: translateX(10px);
}

.footer-dome {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  transform: none;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.footer-dome img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: bottom;
}

.footer-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* .footer-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 1; 
  pointer-events: none;
} */

/* --- Lenis scroll --- */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .mobile-menu {
    display: block;
  }

  .nav-hamburger {
    display: flex;
  }

  .navbar-inner {
    padding: 0 20px;
  }

  /* Hide desktop nav links */
  .navbar-inner .nav-link-item {
    display: none;
  }

  .nav-contact-group {
    display: none;
  }

  /* Hero layout */
  .hero-section {
    background: linear-gradient(180deg, #FDFF8E 0%, #FAFAFA 100%);
  }

  .hero-section .container-fluid {
    padding-bottom: 0;
  }

  .hero-section .row {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 0;
  }

  .hero-image-wrap {
    order: 1;
    width: 100%;
    /* justify-content: center;
    align-items: center; */
    padding: 0;
  }

  .hero-img {
    width: 80vw;
    max-width: 80vw;
    min-width: unset;
    margin: 100px 0;
    display: block;
  }

  .big-bottom-text {
    margin-top: 0;
    padding: 0 24px 32px 24px;
  }

  .big-bottom-text span {
    font-size: 9.5vw;
    line-height: 1.15;
  }

  .bbt-row-1 {
    flex-direction: column;
    gap: 0;
  }

  .bbt-row-1 .stagger-word:first-child {
    align-self: flex-start;
  }

  .bbt-row-1 .stagger-word:last-child {
    align-self: flex-end;
  }

  .bbt-row-2 {
    justify-content: center;
  }

  .hero-tagline {
    display: none;
  }

  .hero-ctas {
    display: none !important;
  }

  .hero-ctas-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 24px 40px 24px;
  }

  .hero-ctas-mobile .cta-btn {
    font-size: 14px;
  }

  .reveal-text {
    width: 90%;
    font-size: 2.6rem;
  }

  .desc-text {
    font-size: 1.25rem;
  }

  .ps-counter-top {
    margin-left: calc(17.5vw + 16px); 
    margin-bottom: 24px;
  }

  .ps-counter-top .ps-num-current {
    font-size: 8vw;
  }

  .ps-counter-top .ps-num-total {
    font-size: 4vw;
  }

  .ps-card-inner {
    aspect-ratio: auto;
  }

  .ps-img-wrap {
    aspect-ratio: 3 / 2;
    flex: none;
  }

  .ps-horizontal-viewport {
    margin-top: 0; 
    padding-bottom: 0;
    transform: none; 
  }

  .ps-sticky-wrap::after {
    height: 40%;
  }

  .ps-horizontal-track {
    padding-left: 17.5vw;
    padding-right: 17.5vw;
  }

  .ps-project-item {
    flex: 0 0 65vw;
    margin-right: 4vw;
  }

  .ps-info-wrap,
  .ps-title,
  .ps-categories {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .services-intro-section {
    padding: 120px 0;
  }

  .si-label {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .si-statement {
    font-size: 4vw;
    max-width: 90%;
  }

  .si-desc {
    margin-top: 10px;
    max-width: 100%;
    font-size: 1.1rem;
  }

  .services-detail-section {
    padding-top: 40px;
    padding-bottom: 120px;
  }

  .service-title {
    font-size: 2.2rem;
  }

  .service-list li {
    font-size: 1.15rem;
  }

  .service-number-box {
    width: 40px;
  }

  .service-divider {
    margin: 0 0 0 40px;
  }

  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-title {
    font-size: 10vw;
    margin-top: 16px;
  }

  .text-left {
    padding-left: 6vw;
  }

  .text-right {
    padding-right: 4vw;
    margin-top: 12px;
  }

  .quote-mark {
    left: -10px;
    font-size: 0.5em;
  }

  .testimonial-main-content {
    margin-top: 80px;
    overflow: hidden;
  }

  .testi-slider-container {
    overflow: hidden;
  }

  .testi-track {
    align-items: stretch;
  }

  .testi-slide {
    flex: 0 0 100vw;
    max-width: 100vw;
    padding: 0 50px;
    opacity: 0;
  }

  .testi-slide.active {
    opacity: 1;
  }

  .testi-slide .row {
    flex-direction: column;
    align-items: center;
  }

  .testi-slide .col-md-5 {
    width: 100%;
    display: flex;
    justify-content: center !important;
    padding: 0 !important;
    margin-bottom: 24px;
  }

  .testimonial-avatar {
    width: 240px;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    margin-bottom: 0;
  }

  .testi-slide .col-md-7 {
    width: 100%;
    padding: 0 !important;
  }

  .testimonial-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .quote-author {
    order: 1;
    margin-top: 0;
    margin-bottom: 24px;
    text-align: center;
  }

  .author-name {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 4px;
  }

  .author-position {
    font-size: 1rem;
  }

  .quote-text {
    order: 2;
    font-size: 1.15rem;
    line-height: 1.6;
    text-align: center;
    max-width: 85%;
  }

  .testimonial-footer {
    margin-top: 50px;
    width: 100%;
  }

  .testimonial-footer .row {
    margin: 0 !important;
    justify-content: center !important;
  }

  .testimonial-footer .col-md-4 {
    display: none !important;
  }

  .testimonial-footer .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;
  }

  .testimonial-pagination {
    width: 100%;
    display: flex;
    justify-content: center !important;
    align-items: baseline !important;
  }

  .testimonial-pagination .current {
    font-size: 14vw;
    line-height: 0.72;
    margin-bottom: -2px;
  }

  .testimonial-pagination .total {
    font-size: 4vw;
    line-height: 1;
    margin-left: 4px;
  }

  .testimonial-nav-btns {
    width: 100%;
    display: flex;
    justify-content: center !important;
    gap: 20px;
  }

  .icon-alt {
    display: none !important;
  }

  .icon-main {
    transform: translateX(0) !important;
  }

  .nav-btn,
  .next-btn-wrapper,
  .progress-ring {
    width: 64px;
    height: 64px;
  }

  /* .progress-ring circle {
    cx: 32;
    cy: 32;
    r: 30;
  } */

  .blog-intro-section {
    padding: 100px 0;
  }

  .blog-card {
    flex: 0 0 calc((100% - 24px) / 2) !important;
    width: calc((100% - 24px) / 2) !important;
    max-width: calc((100% - 24px) / 2) !important;
  }

  .blog-slider-section {
    padding-bottom: 15px !important;
    margin-bottom: 0 !important;
  }

  .blog-slider-section .blog-nav-btns.mt-5 {
    margin-top: 20px !important;
  }

  /* .footer-sticky .row {
    transform: translateY(-8vh);
  } */

  .footer-line {
    font-size: 8.5vw;
    margin-bottom: 2.5vw;
  }

  .footer-text-wrap .footer-line:nth-child(1) .text-old,
  .footer-text-wrap .footer-line:nth-child(1) .text-new {
    padding-left: 15vw;
  }

  .footer-text-wrap .footer-line:nth-child(2) .text-old,
  .footer-text-wrap .footer-line:nth-child(2) .text-new {
    padding-left: 30vw;
  }

  .footer-text-wrap .footer-line:nth-child(3) .text-old,
  .footer-text-wrap .footer-line:nth-child(3) .text-new {
    padding-left: 20vw;
  }

  .footer-btn {
    margin-top: 50px;
    padding: 10px 10px 10px 20px;
    font-size: 15px;
  }

  .footer-cursor-btn {
    display: none !important;
  }

  .footer-real-btn-col {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 60px !important;
    text-align: center !important;
  }

  .final-footer-section {
    margin-top: -15vh;
    padding-top: 60px;
  }
}

/* MOBILE (≤ 765px) */
@media (max-width: 765px) {
  .mobile-menu {
    display: block;
  }

  .nav-hamburger {
    display: flex;
  }

  .navbar-inner {
    padding: 0 10px;
  }

  .navbar-inner .nav-link-item {
    display: none;
  }

  .nav-contact-group {
    display: none;
  }

  /* Hero layout */
  .hero-section {
    background: linear-gradient(180deg, #FDFF8E 0%, #FAFAFA 100%);
  }

  .hero-section .container-fluid {
    padding-bottom: 0;
  }

  .hero-section .row {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 0;
  }

  .hero-image-wrap {
    order: 1;
    width: 100%;
    /* justify-content: center;
    align-items: center; */
    padding: 0;
  }

  .hero-img {
    width: 85vw;
    max-width: 85vw;
    min-width: unset;
    margin: 80px 0;
    display: block;
  }

  .big-bottom-text {
    margin-top: 0;
    padding: 0 16px 20px 16px;
  }

  .big-bottom-text span {
    font-size: 11.5vw;
    line-height: 1.15;
  }

  .bbt-row-1 {
    flex-direction: column;
    gap: 0;
  }

  .bbt-row-1 .stagger-word:first-child {
    align-self: flex-start;
  }

  .bbt-row-1 .stagger-word:last-child {
    align-self: flex-end;
  }

  .bbt-row-2 {
    justify-content: center;
  }

  .hero-tagline {
    display: none;
  }

  .hero-ctas {
    display: none !important;
  }

  .hero-ctas-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 0 16px 32px 16px;
  }

  .hero-ctas-mobile .cta-btn {
    font-size: 13px;
  }

  .reveal-text {
    width: 100%;
    font-size: 2rem;
  }

  .label-side {
    display: inline-block;
    margin-bottom: 24px !important;
  }

  .desc-text {
    font-size: 1.1rem;
  }

  .bbt-row-1 .stagger-word:first-child,
  .bbt-row-1 .stagger-word:last-child,
  .bbt-row-2 .stagger-word,
  .hero-ctas-mobile .cta-btn {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }

  .bbt-row-1 .stagger-word:first-child {
    animation-name: mobileFadeInLeft;
    animation-delay: 0.4s;
  }

  .bbt-row-1 .stagger-word:last-child {
    animation-name: mobileFadeInRight;
    animation-delay: 0.8s;
  }

  .bbt-row-2 .stagger-word {
    animation-name: mobileFadeInUp;
    animation-delay: 1.2s;
  }

  .hero-ctas-mobile .cta-btn:first-child {
    animation-name: mobileFadeInLeft;
    animation-delay: 1.6s;
  }

  .hero-ctas-mobile .cta-btn:last-child {
    animation-name: mobileFadeInRight;
    animation-delay: 1.6s;
  }

  .stagger-char {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .ps-counter-top {
    margin-left: calc(7.5vw + 10px); 
    margin-bottom: 16px; 
  }

  .ps-counter-top .ps-num-current {
    font-size: 16vw;
  }

  .ps-counter-top .ps-num-total {
    font-size: 6vw;
    margin-left: 4px;
  }

  .ps-horizontal-viewport {
    margin-top: 0;
    padding-bottom: 0;
    transform: none;
  }

  .ps-sticky-wrap::after {
    height: 40%;
  }

  .ps-horizontal-track {
    padding-left: 7.5vw;
    padding-right: 7.5vw;
  }

  .ps-project-item {
    flex: 0 0 85vw;
    margin-right: 6vw;
  }

  .ps-card-inner {
    aspect-ratio: auto;
    padding: 12px;
    border-radius: 10px;
  }

  .ps-img-wrap {
    aspect-ratio: 3 / 2;
    flex: none;
  }

  .ps-info-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 16px;
  }

  .ps-title {
    font-size: 18px;
  }

  .ps-categories span {
    font-size: 18px;
  }

  .ps-categories {
    gap: 12px;
  }

  .ps-info-wrap,
  .ps-title,
  .ps-categories {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .services-intro-section {
    padding: 80px 0;
  }

  .si-label {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .si-statement {
    font-size: 2.2rem;
    max-width: 100%;
    word-spacing: normal;
  }

  .si-desc {
    margin-top: 24px;
    max-width: 90%;
    font-size: 1rem;
  }

  .services-detail-section {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .service-content-wrapper {
    padding: 15px 0 15px 0;
  }

  .service-title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .service-list li {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .service-number-box {
    width: 35px;
  }

  .service-number {
    font-size: 1rem;
  }

  .service-divider {
    margin: 0 0 0 35px;
  }

  .service-header-row {
    margin-bottom: 10px;
  }

  .service-list li::before {
    margin-right: 10px;
  }

  .service-image-viewport {
    margin-left: 35px;
    width: calc(100% - 35px) !important;
    right: 0 !important;
    max-width: none !important;
    height: auto !important;
  }

  .service-img {
    height: auto !important;
  }

  .testimonial-section {
    padding: 40px 0 60px 0;
  }

  .testimonial-title {
    font-size: 11vw;
    margin-top: 16px;
  }

  .text-left {
    padding-left: 6vw;
  }

  .text-right {
    padding-right: 4vw;
    margin-top: 12px;
  }

  .quote-mark {
    left: -10px;
    font-size: 0.5em;
  }

  .testimonial-main-content {
    margin-top: 60px;
    overflow: hidden;
  }

  .testi-slider-container {
    overflow: hidden;
  }

  .testi-track {
    align-items: stretch;
  }

  .testi-slide {
    flex: 0 0 100vw;
    max-width: 100vw;
    padding: 0 24px;
    opacity: 0;
  }

  .testi-slide.active {
    opacity: 1;
  }

  .testi-slide .row {
    flex-direction: column;
    align-items: center;
  }

  .testi-slide .col-md-5 {
    width: 100%;
    display: flex;
    justify-content: center !important;
    padding: 0 !important;
    margin-bottom: 24px;
  }

  .testimonial-avatar {
    width: clamp(160px, 50vw, 260px);
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    margin-bottom: 0;
  }

  .testi-slide .col-md-7 {
    width: 100%;
    padding: 0 !important;
  }

  .testimonial-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .quote-author {
    order: 1;
    margin-top: 0;
    margin-bottom: 24px;
    text-align: center;
  }

  .author-name {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .author-position {
    font-size: 0.95rem;
  }

  .quote-text {
    order: 2;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  .testimonial-footer {
    margin-top: 40px;
    width: 100%;
  }

  .testimonial-footer .row {
    margin: 0 !important;
    justify-content: center !important;
  }

  .testimonial-footer .col-md-4 {
    display: none !important;
  }

  .testimonial-footer .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
  }

  .testimonial-pagination {
    width: 100%;
    display: flex;
    justify-content: center !important;
    align-items: baseline !important;
  }

  .testimonial-pagination .current {
    font-size: 18vw;
    line-height: 0.72;
    margin-bottom: -2px;
  }

  .testimonial-pagination .total {
    font-size: 6vw;
    line-height: 1;
    margin-left: 2px;
  }

  .testimonial-nav-btns {
    width: 100%;
    display: flex;
    justify-content: center !important;
    gap: 16px;
  }

  .icon-alt {
    display: none !important;
  }

  .icon-main {
    transform: translateX(0) !important;
  }

  .nav-btn,
  .next-btn-wrapper,
  .progress-ring {
    width: 52px;
    height: 52px;
  }

  /* .progress-ring circle {
    cx: 26;
    cy: 26;
    r: 24;
  } */

  .blog-intro-section {
    padding: 50px 0;
  }

  .blog-slider-section {
    padding-bottom: 5px !important;
    ;
  }

  .blog-slider-section .blog-nav-btns.mt-5 {
    margin-top: 10px !important;
  }

  /* .footer-sticky .row {
    transform: translateY(-12vh);
  } */

  .blog-card {
    flex: 0 0 calc((100% - 12px) / 1.3) !important;
    width: calc((100% - 12px) / 1.3) !important;
    max-width: calc((100% - 12px) / 1.3) !important;
  }

  .blog-title {
    font-size: 1.15rem;
  }

  .footer-line {
    font-size: 12vw;
    margin-bottom: 4.5vw;
  }

  .footer-section .col-12.text-start.text-md-end {
    text-align: center !important;
    margin-top: 60px !important;
  }

  .footer-text-wrap .footer-line:nth-child(1) .text-old,
  .footer-text-wrap .footer-line:nth-child(1) .text-new {
    padding-left: 0;
  }

  .footer-text-wrap .footer-line:nth-child(2) .text-old,
  .footer-text-wrap .footer-line:nth-child(2) .text-new {
    padding-left: 12vw;
  }

  .footer-text-wrap .footer-line:nth-child(3) .text-old,
  .footer-text-wrap .footer-line:nth-child(3) .text-new {
    padding-left: 5vw;
  }

  .footer-btn {
    width: auto;
    padding: 15px 30px;
    font-size: 15px;
    justify-content: center;
  }

  .footer-cursor-btn {
    display: none !important;
  }

  .footer-btn i {
    font-size: 18px;
  }

  .final-footer-section .row {
    display: flex;
    flex-direction: column;
  }

  .final-footer-section {
    margin-top: -25vh;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .final-right-col {
    order: 1;
    margin-top: 0 !important;
    padding-left: 0;
    padding-right: 24px;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    margin-bottom: 60px;
  }

  .social-links-wrap {
    width: max-content;
    text-align: right;
  }

  .social-title {
    margin-bottom: 12px;
  }

  .social-list {
    gap: 12px;
  }

  .social-list a {
    font-size: 32px;
  }

  .final-left-col {
    order: 2;
    padding-left: 24px;
    justify-content: flex-end !important;
    gap: 40px;
    padding-bottom: 25vw;
  }

  .contact-info p {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .copyright p {
    font-size: 13px;
  }
}

@keyframes mobileFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mobileFadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mobileFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1025px) {
  .blog-slider-container {
    width: calc(100% + 3rem);
    margin-right: -3rem;
  }

  .service-item:nth-child(3n + 1) .service-image-viewport {
    right: -10%;
  }

  .service-item:nth-child(3n + 2) .service-image-viewport {
    right: 5%;
  }

  .service-item:nth-child(3n + 3) .service-image-viewport {
    right: 20%;
  }

  .footer-real-btn-col {
    display: none !important;
  }

  /* .footer-cursor-zone {
    cursor: none;
  } */
}

/* @media (max-width: 576px) {
  .navbar-inner {
    padding: 8px 16px;
  }

  .nav-hamburger.active {
    top: 16px;
    right: 16px;
  }

  .hero-img {
    width: 88vw;
    max-width: 88vw;
  }

  .big-bottom-text {
    padding: 0 10px 16px 10px;
  }

  .big-bottom-text span {
    font-size: 13vw;
    line-height: 1.1;
  }

  .big-bottom-text > div:first-child {
    justify-content: space-between;
  }

  .hero-ctas {
    gap: 24px;
    padding-bottom: 24px;
  }

  .cta-btn {
    font-size: 12px;
  }

  .reveal-text {
    width: 100%;
    font-size: 1.6rem;
    word-spacing: normal;
  }

  .desc-text {
    font-size: 1rem;
  }

  .link-more {
    font-size: 0.9rem;
  }
} */