<style>
/*=============================
  Fonts & Global Reset
=============================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Pattaya&display=swap');
* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Serif", serif;
  background: transparent;
  color: #fff;
  height: 4000vh;
  overflow-x: hidden;
}

/*=============================
  Fonts & Global Reset
=============================*/
::selection { 
  background-color: rgba(128, 0, 128, 0.8);
  color: white;
}
::-moz-selection { 
  background-color: rgba(128, 0, 128, 0.8);
  color: white;
}

/*=============================
  Navbar
=============================*/
.navbar {
  margin: 0;
  padding: 10px 50px;
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #ffffff;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-logo {
  font-size: 24px;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-link {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background: purple;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link:not(:hover)::after {
  transform-origin: right;
}
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.menu-icon {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  user-select: none;
}
@media (max-width: 992px) {
  .navbar {
    padding: 25px;
  }
  .nav-logo {
    font-size: 20px;
  }
  .menu-icon {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    display: none;
    border-top: 1px solid #ddd;
  }
  .nav-links.open {
    display: flex;
  }
}
@media (max-width: 414px) {
  .navbar {
    padding: 10px 20px;
  }
  .nav-logo {
    font-size: 16px;
  }
  .nav-links {
    top: 30px;
  }
}

/*=============================
  Loader
=============================*/
.screen-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f5f5f5;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loader-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  position: relative;
}
.loader-circle svg {
  width: 75px; 
  height: 75px; 
}
.triangle-path { 
  stroke: #fff; 
  stroke-width: 2; 
  fill: #545454; 
  stroke-linejoin: round; 
  stroke-linecap: round; 
  stroke-dasharray: 240; 
  stroke-dashoffset: 240; 
  animation: draw 2s linear infinite;
}
@keyframes draw { 
  0% { stroke-dashoffset: 240; } 
  100% { stroke-dashoffset: 0; } 
}
.loader-percentage {
  color: #545454;
  font-size: 1.2rem;
}

/*=============================
  Overlay
=============================*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 999;
  opacity: 1;
  transition: opacity 1s ease;
}

/*=============================
  Lottie Wrapper
=============================*/
.lottie-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}
#lottie-container-1,
#lottie-container-2,
#lottie-container-3,
#lottie-container-4 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
canvas {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
}
.hidden {
  opacity: 0;
  pointer-events: none;
}

/*=============================
  Custom Scrollbar
=============================*/
::-webkit-scrollbar {
  display: none;
}
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
/* Custom Scrollbar */
.scrollbar-track {
  position: fixed;
  top: 0;
  right: 0;
  width: 8px;
  height: 100vh;
  border-radius: 10px;
  overflow: hidden;
  z-index: 10000;
  pointer-events: auto;
  background: transparent;
}
.scrollbar-thumb {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(185, 218, 189, 0.9);
  border-radius: 10px;
  transition: background 0.15s ease;
}

/*=============================
  Scroll Hint
=============================*/
.scroll-hint {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-family: Arial, sans-serif;
  color: #fff;
  font-size: 16px;
  z-index: 99;
  pointer-events: none;
}
.scroll-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1s infinite;
  background-color: #8E9093;
}
.scroll-icon {
  width: 40px;
  height: 40px;
  stroke: #000;
  stroke-width: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 1024px) {
  .scroll-hint {
    bottom: 70px;
    gap: 16px;
    font-size: 14px;
  }
  .scroll-icon-circle {
    width: 36px;
    height: 36px;
  }
  .scroll-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .scroll-hint {
    bottom: 70px;
    gap: 14px;
    font-size: 12px;
  }
  .scroll-icon-circle {
    width: 32px;
    height: 32px;
  }
  .scroll-icon {
    width: 32px;
    height: 32px;
  }
}

/*=============================
  Buttons
=============================*/
.btn-group{
  display: flex;
  gap: 40px;
  justify-content: center;
}
.btn-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eaeceb;
}
.btn-icon {
  width: 20px;
  height: 20px;
  stroke: #000;
}
.btn-group a{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/*=============================
  Scroll Texts (Mobile-First)
=============================*/
.scroll-appearence {
  opacity: 0;
  z-index: 99;
  pointer-events: none;
}

/* Position Text */
.message-text {
  position: absolute;
  font-weight: 500;
  line-height: 1.4;
  width: 90%;       
  left: 50%;       
  bottom: 20%;     
  transform: translateX(-50%);
  text-align: center;
}
.message-text-left, .message-text-right {
  position: absolute;
  font-weight: 500;
  line-height: 1.4;
  width: 90%;         
  bottom: 20%;
  text-align: center;
  color: #111;
}
.message-text-left {
  transform: translate(-50%);
  left: 50%;
}
.message-text-right {
  transform: translateX(50%);
  right: 50%;
}

/* Position Image */
.message-image-left {
  position: absolute;
  top: 40%;       
  left: 50%;     
  transform: translate(-50%, -50%);
}
.message-image-right {
  position: absolute;
  top: 40%;       
  right: 50%;
  transform: translate(50%, -50%); 
}
.message-image-right img, .message-image-left img{
  width: 100%;
}

.white { color: #fff; }
.black { color: #111; }

@media (min-width: 768px) {
  .message-text {
    width: 70%;
    left: 10%;
    top: 50%;        
    bottom: auto;
    transform: translateY(-50%);
    text-align: left;
  }

  .message-text-left, .message-text-right {
    width: 50%;        
    top: 50%;         
    bottom: auto;
    text-align: left;
  }
  .message-text-left {
    transform: translate(-50%, -50%);
    left: 35%;
  }
  .message-text-right {
    transform: translate(50%, -50%);
    right: 25%;
  }

  /* Position Image */
  .message-image-right {
    top: 50%;
    right: 5%;
  }
  .message-image-right img {
    width: 40%;
    height: auto;
  }
  .message-image-left {
    top: 50%;       
    left: 40%;
  }
  .message-image-left img{
    width: 50%;
    height: auto;
  }

  .btn-group { justify-content: left }
}

@media (min-width: 1024px) {
  .message-text {
    width: 40%;       
    left: 10%;        
    top: 50%;         
    bottom: auto;
    transform: translateY(-50%);
    text-align: left;
  }

  .message-text-left, .message-text-right {
    width: 40%;        
    top: 50%;         
    bottom: auto;
    text-align: left;
  }
  .message-text-left {
    transform: translate(-50%, -50%);
    left: 30%;
  }
  .message-text-right {
    transform: translate(50%, -50%);
    right: 30%;
  }

  .message-image-right {
    top: 50%;
    right: 10%;
  }
  .message-image-right img {
    width: 50%;
    height: auto;
  }
  .message-image-left {
    top: 50%;       
    left: 40%;
  }
  .message-image-left img{
    width: 50%;
    height: auto;
  }

  .btn-group { justify-content: left }
}

.large  { font-size: 4rem; }
.medium { font-size: 3rem; }
.normal { font-size: 2.5rem; }
.small  { font-size: 2rem; }

@media (max-width: 1024px) {
  .large  { font-size: 3.5rem; }
  .medium { font-size: 2.5rem; }
  .normal { font-size: 2rem; }
  .small  { font-size: 1.75rem; }
}

@media (max-width: 768px) {
  .large  { font-size: 3rem; }
  .medium { font-size: 2.25rem; }
  .normal { font-size: 1.75rem; }
  .small  { font-size: 1.5rem; }
}

@media (max-width: 414px) {
  .large  { font-size: 2.5rem; }
  .medium { font-size: 2rem; }
  .normal { font-size: 1.5rem; }
  .small  { font-size: 1.25rem; }
}

/*=============================
  Project Showcase
=============================*/
.projects-preview {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  padding-top: 70px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 999;
}
.device-frame {
  width: 70%;
  height: 75vh;
  background: #000;
  border-radius: 25px;
  padding: 10px;
  border: 5px solid #111;
  display: flex;
  justify-content: center;
  align-items: center;
}
.device-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.swiper {
  width: 100%;
  height: 100%;
}
.slide-overlay {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  height: 16vh;
  gap: 10px;
  letter-spacing: 0.75px;
  padding: 10px 0;
}
.slide-overlay .slide-text {
  width: 90%;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.slide-overlay .explore-btn {
  padding: 8px 16px;
  background: rgba(122, 66, 200, 1);
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  text-transform: uppercase;
}
.slide-overlay .explore-btn:hover {
  background: rgba(105, 56, 179, 1);
}
@media (max-width: 992px) {
  .projects-preview {
    padding-top: 75px;
  }
  .slide-overlay {
    height: 12vh;
    gap: 15px;
    padding: 5px 0;
  }
  .slide-overlay .slide-text {
    font-size: 1rem;
    line-height: 1.2;
  }
  .slide-overlay .explore-btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }
}
@media (max-width: 414px) {
  .projects-preview {
    padding-top: 50px;
  }
  .projects-preview .swiper-button-prev, .projects-preview .swiper-button-next {
    opacity: 0;
    pointer-events: none;
  }
  .slide-overlay {
    height: 14vh;
    gap: 15px;
    padding: 5px 0;
  }
  .slide-overlay .slide-text {
    font-size: 0.6rem;
    line-height: 1.4;
  }
  .slide-overlay .explore-btn {
    padding: 6px 12px;
    font-size: 0.6rem;
  }
}
@media (max-width: 768px) {
  .device-screen img {
    object-fit: fill;
  }
}

/*=============================
  Feedback Slider
=============================*/
.feedback-container {
  position: absolute;
  bottom: 30px;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.swiper {
  margin: 0 20px;
  width: 100%;
  display: flex;
}
.swiper-wrapper {
  display: flex;
}
.myTestinomialsSwiper .swiper-slide {
  min-width: 300px;
  height: 35vh;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.feedback-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  height: 100%;
}
.feedback-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  height: 100px;
  overflow-y: auto;
  text-align: justify;
}
.feedback-name {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 10px;
  text-align: center;
}
.swiper-button-prev, .swiper-button-next {
  --swiper-navigation-size: 36px;
  --swiper-navigation-color: rgba(128, 0, 128, 0.8);
}

@media(max-width:768px){
  .feedback-container {
    bottom: 25px;
  }
  .feedback-content {
    padding: 40px;
  }
  .feedback-text {
    font-size: 1.8rem;
    height: 200px;
  }
  .feedback-name {
    font-size: 2rem;
  }
  .myTestinomialsSwiper .swiper-slide {
    height: 30vh;
  }
  .swiper-button-prev, .swiper-button-next {
    --swiper-navigation-size: 28px;
  }
}
@media(max-width:414px){
  .feedback-container {
    bottom: 20px;
    width: calc(100% - 20px);
  }
  .feedback-content {
    padding: 35px;
  }
  .myTestinomialsSwiper .swiper-slide {
    height: 25vh;
  }
  .feedback-text {
    font-size: 1rem;
     height: 90px;
  }
  .feedback-name {
    font-size: 1.2rem;
  }
  .swiper-button-prev, .swiper-button-next {
    --swiper-navigation-size: 20px;
  }
}
</style>