#three-bg-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

/* Smooth gradient overlay to blend with navbar */
#three-bg-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(
    to bottom,
    var(--background-color) 0%,
    rgba(26, 26, 26, 0.8) 20%,
    rgba(26, 26, 26, 0.4) 50%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
}

/* Smooth gradient overlay at bottom */
#three-bg-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(
    to top,
    var(--primary-color) 0%,
    rgba(20, 20, 20, 0.9) 20%,
    rgba(20, 20, 20, 0.5) 50%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
}

a-hole {
  position: absolute;
  top: 0;
  left: 0;

  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;

  overflow: hidden;

  &:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;

    display: block;
    width: 150%;
    height: 140%;

    background: radial-gradient(ellipse at 50% 55%, transparent 10%, black 50%);
    transform: translate3d(-50%, -50%, 0);

    content: "";
  }

  &:after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;

    display: block;
    width: 100%;
    height: 100%;

    background: radial-gradient(
      ellipse at 50% 75%,
      #a900ff 20%,
      transparent 75%
    );
    mix-blend-mode: overlay;
    transform: translate3d(-50%, -50%, 0);

    content: "";
  }

  @keyframes aura-glow {
    0% {
      background-position: 0 100%;
    }
    100% {
      background-position: 0 300%;
    }
  }

  .aura {
    position: absolute;
    top: -71.5%;
    left: 50%;
    z-index: 3;

    width: 30%;
    height: 140%;

    background: linear-gradient(
        20deg,
        #00f8f1,
        #ffbd1e20 16.5%,
        #fe848f 33%,
        #fe848f20 49.5%,
        #00f8f1 66%,
        #00f8f160 85.5%,
        #ffbd1e 100%
      )
      0 100% / 100% 200%;
    border-radius: 0 0 100% 100%;
    filter: blur(50px);
    mix-blend-mode: plus-lighter;
    opacity: 0.75;
    transform: translate3d(-50%, 0, 0);

    animation: aura-glow 5s infinite linear;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;

    width: 100%;
    height: 100%;

    background: repeating-linear-gradient(
      transparent,
      transparent 1px,
      white 1px,
      white 2px
    );
    mix-blend-mode: overlay;
    opacity: 0.5;
  }
}

a-hole canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.disabled {
  display: none;
}

#three-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 10%;
}

#three-bg :disabled {
  display: none;
}

/* Hero section styling for smooth transitions */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  min-height: 90vh;
}

.container.intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90vh;
}

.intro-text {
  z-index: 1;
}

.intro-text h1 {
  color: white;
  font-size: 80px;
  font-weight: 800;
  margin: 0;
  line-height: 120%;
}

.intro-text span {
  color: var(--button-color);
}

.intro-text p {
  color: var(--text-secondary);
  margin: 20px 0;
  font-size: 22px;
}

.intro-button,
.ai-button {
  margin-top: 50px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.intro-button a,
.ai-button a {
  text-align: center;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 18px;
}

.intro-button-more {
  border: 1px solid var(--background-secondary);
  color: white;
}

.intro-button-more:hover {
  background-color: var(--primary-color);
  color: var(--button-color);
  transition: 0.3s ease-in-out;
}

/* Animated gradient button styles */
@keyframes buttonGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.intro-button-want,
.ai-button-want {
  position: relative;
  color: var(--primary-color);
  background: linear-gradient(
    270deg,
    var(--button-color),
    #8e85fa,
    var(--button-color),
    #00f8f1,
    var(--button-color)
  );
  background-size: 400% 400%;
  animation: buttonGradientShift 8s ease infinite;
  overflow: hidden;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(208, 255, 113, 0.2);
}

/* Glow effect for buttons */
.intro-button-want::after,
.ai-button-want::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    270deg,
    var(--button-color),
    #8e85fa,
    var(--button-color),
    #00f8f1,
    var(--button-color)
  );
  background-size: 400% 400%;
  animation: buttonGradientShift 8s ease infinite;
  border-radius: 8px;
  opacity: 0.5;
  filter: blur(10px);
  z-index: -1;
  transition: all 0.3s ease;
}

.intro-button-want:hover,
.ai-button-want:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(208, 255, 113, 0.4);
  color: var(--primary-color);
}

.intro-button-want:hover::after,
.ai-button-want:hover::after {
  opacity: 0.8;
  filter: blur(15px);
}

.container.service {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  gap: 10px;
  border: 1px solid #262626;
  padding: 16px;
  box-shadow: 0 0 0 6px #191919;
}

.row-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid #262626;
  border-radius: 10px;
  gap: 16px;
  background-color: var(--background-color);
}

.row-service p {
  text-align: left;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.row-service h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.row-service img {
  width: 60px;
}

.container.info {
  margin-top: 20px;
}

.info-text {
  padding-bottom: 60px;
  margin: 0 80px;
}

@keyframes handAnimation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.hand {
  animation: handAnimation 2s infinite ease-in-out;
  transform-origin: 50% 80%;
  position: absolute;
  bottom: 100px;
  right: 100px;
}

.container.chat-bot {
  position: relative;
}

.container.chat-bot h1 {
  font-weight: 900;
  font-size: 176px;
  line-height: 100%;
  text-align: center;
  color: #2a2a2c;
  margin: 0;
  margin-bottom: -70px;
}

@media (max-width: 1280px) {
  .container.chat-bot h1 {
    font-size: 12vw;
  }
}

.chat-bot-image {
  display: flex;
  justify-content: center;
  padding: 0px 80px;
}

.chat-bot-image svg {
  width: auto;
  min-width: 40%;
  height: auto;
}

.text-left {
  padding-top: 60px;
}

.text-right {
  padding-top: 60px;
}

.text-right img {
  rotate: 180deg;
}

.text {
  display: flex;
  padding: 7vh 0px;
  text-wrap: nowrap;
}

.text-right .text.second {
  margin-left: 40px;
}

.text p {
  color: #f0f0f2;
  font-size: 14px;
  font-weight: 900;
  margin: 0;
  border: 1px solid #f0f0f2;
  background-color: #282829;
  padding: 10px 20px;
  border-radius: 5px;
}

.info-text h1,
.info-text-blog h1 {
  color: white;
  font-size: 38px;
  font-weight: 600;
  margin: 0;
  line-height: 150%;
}

.info-text p,
.info-text-blog p {
  color: var(--text-secondary);
  margin: 10px 0;
  font-size: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 80px;
}

.info-grid-blog,
.info-grid-profile {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 20px;
  margin: 0 80px;
}

.row-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 40px;
  border: 1px solid #262626;
  border-radius: 10px;
}

.row-info h2,
.row-info-blog h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  padding-bottom: 8px;
  line-height: 150%;
}

.row-info h4 {
  text-align: left;
  color: #dedfea;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding-bottom: 24px;
}

.row-info p,
.row-info-blog p {
  text-align: left;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding-bottom: 24px;
  letter-spacing: -0.6px;
  line-height: 150%;
}

.info-button {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--background-color);
  border: 1px solid #262626;
  border-radius: 8px;
  white-space: nowrap;
}

.info-button a {
  display: inline-block;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  color: white;
}

.info-text-blog {
  padding-bottom: 60px;
  margin: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.services-ai {
  display: flex;
  gap: 50px;
  margin: 0 80px;
}

.ai-services {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid #262626;
  background-color: #1a1a1a;
  border-radius: 10px;
  height: 180px;
  width: 50%;
}

.ai-image {
  width: 300px;
  height: 200px;
}

.ai-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.3);
  transform-origin: center;
}

.ai-image-2 {
  height: 200px;
}

.ai-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.4);
  transform-origin: center;
}

.ai-background {
  z-index: 0;
}

.ai-foreground {
  z-index: 1;
}

.ai-services h2 {
  color: white;
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  padding-bottom: 16px;
}

.ai-services span {
  color: #8e85fa;
  font-weight: 900;
  font-size: 50px;
}

.ai-services p {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.6px;
  line-height: 150%;
}

.view-all-button {
  display: inline-block;
  background-color: var(--background-color);
  border: 1px solid #262626;
  border-radius: 8px;
  padding: 14px 20px;
  white-space: nowrap;
}

.view-all {
  text-decoration: none;
  color: white;
  font-size: 14px;
  white-space: nowrap;
}

.row-info-blog {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 30px;
  border: 1px solid #262626;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
}

.info-button-blog {
  display: flex;
  justify-content: center;
  background-color: var(--button-color);
  border: 1px solid #262626;
  border-radius: 8px;
  white-space: nowrap;
}

.info-button-blog a {
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  color: #141414;
}

.row-info-blog img {
  width: 100%;
  max-height: 350px;
  border-radius: 10px;
}

.description-blog {
  position: relative;
  margin: 24px 0;
  overflow: hidden;
  width: 100%;
  --gradient-opacity: 1;
}

.description-blog::before,
.description-blog::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: var(--gradient-opacity);
  transition: opacity 0.3s ease;
}

.description-blog::before {
  left: 0;
  background: linear-gradient(to right, #0d0d0d, transparent);
}

.description-blog::after {
  right: 0;
  background: linear-gradient(to left, #0d0d0d, transparent);
}

.description-blog-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  animation: scrollTags 5s linear infinite;
  white-space: nowrap;
}

@keyframes scrollTags {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.description-blog:hover .description-blog-inner {
  animation-play-state: paused;
}

.description-blog span {
  color: var(--button-color);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  background-color: #1a1a1a;
  border: 1px solid #262626;
  border-radius: 28px;
  flex-shrink: 0;
}

.row-info-profile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 40px;
  border: 1px solid #262626;
  border-radius: 10px;
}

.profile {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.profile img {
  width: 50px;
  border-radius: 50%;
}

.profile h2 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding-bottom: 10px;
  line-height: 150%;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-info p {
  padding-bottom: 0px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: white;
  line-height: 150%;
}

.profile-info .location {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.profile-text p {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 150%;
}

.start-client {
  display: flex;
  justify-content: space-between;
}

.start-client p {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding-bottom: 0px;
  line-height: 150%;
}

.start-client span {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.client {
  padding-right: 3rem;
}

.container-faq {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px;
}

.container-faq h1 {
  color: white;
  font-size: 74px;
  font-weight: 400;
  line-height: 89px;
  margin: 0px;
}

.subtitle {
  color: white;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 45px;
}

.faq-container {
  margin-top: 20px;
}

.faq-item {
  border-top: 1px solid #a2a7ad;
  padding: 26px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #a2a7ad;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  color: white;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.icon-plus {
  opacity: 1;
  transform: scale(1);
}

.icon-minus {
  opacity: 0;
  transform: scale(0.8);
}

.faq-question.active .icon-plus {
  opacity: 0;
  transform: scale(0.8);
}

.faq-question.active .icon-minus {
  opacity: 1;
  transform: scale(1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.7s ease,
    padding 0.7s ease;
}

.faq-answer p {
  color: #a2a7ad;
  margin: 0px;
}

.faq-answer.show {
  max-height: 200px;
  padding-top: 48px;
}

.view-all-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .info-grid-blog,
  .info-grid-profile {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    max-width: 600px;
    margin: 0 auto;
  }

  .info-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .text {
    padding: 5vh 0px;
  }

  .text p {
    font-size: 12px;
    padding: 10px 10px;
  }

  .text img {
    width: 60px;
  }

  .services-ai {
    flex-direction: column;
    gap: 30px;
    margin: 0 16px;
  }

  .ai-services {
    width: auto;
  }
}

@media (max-width: 768px) {
  .container.intro {
    flex-direction: column;
    padding: 0 16px;
    height: 100svh;
  }

  .intro-text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100svh;
    padding-top: 200px;
  }

  .intro-text h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
  }

  .intro-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
  }

  .intro-text br {
    display: none;
  }

  .intro-button,
  .ai-button {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .ai-button {
    margin: 40px 16px 0;
  }

  .container.service {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
    margin: 50px 16px;
    box-shadow: 0 0 0 4px #191919;
    border-radius: 12px;
  }

  .row-service {
    padding: 20px 14px;
  }

  .row-service h4 {
    line-height: 150%;
  }

  .row-service p {
    line-height: 150%;
  }

  .row-service img {
    width: 48px;
  }

  .container.info {
    margin-top: 50px;
  }

  .container.chat-bot {
    margin-top: 50px;
  }

  .chat-bot-image {
    padding: 0px 16px;
  }

  .text {
    padding: 3vh 0px;
  }

  .text p {
    font-size: 1.5vw;
    padding: 5px 10px;
  }

  .text img {
    width: 4vw;
  }

  .info-grid {
    grid-template-columns: repeat(1, 1fr);
    margin: 0px 16px;
  }

  .info-grid-blog-wrapper {
    overflow: hidden;
    width: 100vw;
    position: relative;
  }

  .info-grid-profile-wrapper {
    overflow: hidden;
    width: 100vw;
    position: relative;
  }

  .info-grid-profile,
  .info-grid-blog {
    display: flex;
    transition: transform 0.4s ease-in-out;
    margin: 0px 16px;
    gap: 20px;
  }

  .info-text {
    padding-bottom: 40px;
    margin: 0px 16px;
  }

  .info-text h1,
  .info-text-blog h1 {
    font-size: 28px;
  }

  .info-text p,
  .info-text-blog p {
    font-size: 14px;
    line-height: 150%;
  }

  .row-info {
    padding: 30px 30px;
  }

  .row-info h2,
  .row-info-blog h2 {
    font-size: 22px;
    padding-bottom: 6px;
  }

  .row-info h4 {
    font-size: 16px;
    padding-bottom: 20px;
  }

  .row-info p,
  .row-info-blog p {
    padding-bottom: 20px;
  }

  .info-text-blog {
    padding-bottom: 40px;
    margin: 0px 16px;
  }

  .view-all-desktop {
    display: none;
  }

  .row-info-blog {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 24px;
    max-width: 100%;
  }

  .description-blog {
    margin-top: 16px;
    margin-bottom: 20px;
  }

  .view-all-mobile {
    display: flex;
    justify-content: space-between;
    margin: 16px;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #262626;
  }

  .slider {
    display: flex;
    gap: 10px;
  }

  .slider p {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;
    color: white;
  }

  .slider button {
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  .sliderBtn .arrow-icon {
    color: white;
    transition: color 0.2s ease;
  }

  .sliderBtn:active .arrow-icon {
    color: #808080;
  }

  .row-info-profile {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 24px;
  }

  .row-info-profile.active {
    display: flex;
  }

  .faq-item {
    padding: 26px 24px;
  }

  .container-faq h1 {
    font-size: 28px;
    line-height: 150%;
    font-weight: 600;
  }

  .subtitle {
    font-size: 14px;
    line-height: 27px;
    font-weight: 400;
    color: #999999;
    margin-top: 6px;
    margin-bottom: 40px;
  }

  .faq-question h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  .faq-answer.show {
    padding-top: 18px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 27px;
    font-weight: 400;
    color: #999999;
  }

  .ai-services {
    width: auto;
    height: auto;
    padding: 30px;
  }

  .ai-image,
  .ai-image-2 {
    display: none;
  }

  .ai-services h2 {
    font-size: 26px;
  }
}

/* Testimonials Slider Styles */
.testimonials-section {
  background-color: var(--primary-color);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-header img {
  margin-bottom: 20px;
}

.testimonials-header h1 {
  color: white;
  font-size: 38px;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 150%;
}

.testimonials-header p {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
  margin: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  margin: 0 -20px;
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  height: 320px;
  display: flex;
  align-items: stretch;
}

/* Show peek of next/prev slides */
@media (min-width: 1024px) {
  .testimonials-slider {
    overflow: visible;
  }

  .testimonial-slide {
    transform: scale(0.85);
    opacity: 0.5;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .testimonial-slide.active {
    transform: scale(1);
    opacity: 1;
  }

  .testimonial-slide.prev,
  .testimonial-slide.next {
    transform: scale(0.85);
    opacity: 0.5;
  }
}

.testimonial-content {
  background-color: var(--background-color);
  border: 1px solid #262626;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
  color: white;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 32px;
  font-style: italic;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 180px;
}

@media (max-width: 1280px) {
  .testimonial-quote {
    font-size: 18px;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #262626;
}

.author-info h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  text-align: left;
}

.author-info p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
  text-align: left;
}

.testimonials-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

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

.testimonials-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4a4a4a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-dots .dot.active {
  background-color: var(--button-color);
  width: 24px;
  border-radius: 4px;
}

/* Single testimonial - center it */
.testimonials-slider[data-testimonials-count="1"] .testimonials-track {
  justify-content: center;
}

.testimonials-slider[data-testimonials-count="1"] .testimonial-slide {
  max-width: 800px;
}

/* Navigation arrows */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--background-color);
  border: 1px solid #262626;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  color: white;
}

.testimonial-nav:hover {
  background-color: var(--button-color);
  color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-nav-prev {
  left: 0;
}

.testimonial-nav-next {
  right: 0;
}

.testimonial-nav svg {
  width: 24px;
  height: 24px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .testimonial-nav {
    display: none;
  }

  .testimonial-quote {
    font-size: 16px;
    max-height: fit-content;
  }

  .testimonials-slider {
    margin: 0;
  }

  .testimonial-slide {
    height: auto;
  }
}

/* Keep slides at full width for proper slider behavior */

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-header {
    margin-bottom: 40px;
    padding: 0 16px;
  }

  .testimonials-header h1 {
    font-size: 28px;
  }

  .testimonials-header p {
    font-size: 14px;
  }

  .testimonials-slider-wrapper {
    padding: 0 16px;
  }

  .testimonial-content {
    padding: 32px 24px;
  }

  .testimonial-author img {
    width: 40px;
    height: 40px;
  }

  .author-info h4 {
    font-size: 14px;
  }

  .author-info p {
    font-size: 12px;
  }

  .testimonials-controls {
    margin-top: 32px;
  }

  /* Always show one testimonial on mobile */
  .testimonials-slider[data-testimonials-count="2"] .testimonial-slide {
    flex: 0 0 100%;
  }
}
