/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /**
   * colors
   */

  /* gradient */

  --bg-gradient-onyx: linear-gradient(
    to bottom right,
    hsl(210, 29%, 20%) 3%,
    hsl(210, 19%, 15%) 97%
  );
  --bg-gradient-jet: linear-gradient(
      to bottom right,
      hsla(210, 19%, 25%, 0.251) 0%,
      hsla(210, 19%, 20%, 0) 100%
    ),
    hsl(210, 19%, 25%);
  --bg-gradient-yellow-1: linear-gradient(
    to bottom right,
    hsl(45, 90%, 55%) 0%,
    hsla(36, 90%, 45%, 0) 50%
  );
  --bg-gradient-yellow-2: linear-gradient(
      135deg,
      hsla(45, 90%, 55%, 0.251) 0%,
      hsla(35, 90%, 50%, 0) 59.86%
    ),
    hsl(210, 19%, 25%);
  --border-gradient-onyx: linear-gradient(
    to bottom right,
    hsl(210, 19%, 30%) 0%,
    hsla(210, 19%, 25%, 0) 50%
  );
  --text-gradient-yellow: linear-gradient(
    to right,
    hsl(45, 90%, 55%),
    hsl(35, 90%, 50%)
  );

  /* solid */

  --jet: hsl(210, 19%, 25%);
  --onyx: hsl(210, 19%, 20%);
  --eerie-black-1: hsl(210, 19%, 18%);
  --eerie-black-2: hsl(210, 19%, 15%);
  --smoky-black: hsl(210, 19%, 12%);
  --white-1: hsl(0, 0%, 98%);
  --white-2: hsl(0, 0%, 95%);
  --orange-yellow-crayola: hsl(45, 90%, 55%);
  --vegas-gold: hsl(45, 80%, 50%);
  --light-gray: hsl(0, 0%, 80%);
  --light-gray-70: hsla(0, 0%, 80%, 0.7);
  --bittersweet-shimmer: hsl(0, 60%, 45%);

  /**
   * typography
   */

  /* font-family */
  --ff-poppins: "Poppins", sans-serif;

  /* font-size */
  --fs-1: 24px;
  --fs-2: 18px;
  --fs-3: 17px;
  --fs-4: 16px;
  --fs-5: 15px;
  --fs-6: 14px;
  --fs-7: 13px;
  --fs-8: 11px;

  /* font-weight */
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;

  /**
   * shadow
   */

  --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.25);
  --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.25);
  --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.25);
  --shadow-4: 0 25px 50px hsla(0, 0%, 0%, 0.15);
  --shadow-5: 0 24px 80px hsla(0, 0%, 0%, 0.25);

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease-in-out;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img,
ion-icon,
a,
button,
time,
span {
  display: block;
}

button {
  font: inherit;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

input,
textarea {
  display: block;
  width: 100%;
  background: none;
  font: inherit;
}

::selection {
  background: var(--orange-yellow-crayola);
  color: var(--smoky-black);
}

:focus {
  outline-color: var(--orange-yellow-crayola);
}

html {
  font-family: var(--ff-poppins);
}

body {
  background: var(--smoky-black);
  padding-bottom: 15px;
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.sidebar,
article {
  background: var(--eerie-black-2);
  border: 1px solid var(--jet);
  border-radius: 20px;
  padding: 15px;
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.separator {
  width: 100%;
  height: 1px;
  background: var(--jet);
  margin: 16px 0;
}

.icon-box {
  position: relative;
  background: var(--border-gradient-onyx);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--orange-yellow-crayola);
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.icon-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--eerie-black-1);
  border-radius: inherit;
  z-index: -1;
}

.icon-box ion-icon {
  --ionicon-stroke-width: 35px;
}

article {
  display: none;
}

article.active {
  display: block;
  animation: fade 0.5s ease backwards;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.h2,
.h3,
.h4,
.h5 {
  color: var(--white-2);
  text-transform: capitalize;
}

.h2 {
  font-size: var(--fs-1);
}

.h3 {
  font-size: var(--fs-2);
}

.h4 {
  font-size: var(--fs-4);
}

.h5 {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.article-title {
  position: relative;
  padding-bottom: 7px;
}

.article-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--text-gradient-yellow);
  border-radius: 3px;
}

.has-scrollbar::-webkit-scrollbar {
  width: 5px; /* for vertical scrollbar */
  height: 5px; /* for horizontal scrollbar */
}

.has-scrollbar::-webkit-scrollbar-track {
  background: var(--onyx);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: var(--orange-yellow-crayola);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-button {
  width: 20px;
}

.content-card {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 15px;
  padding-top: 45px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  z-index: 1;
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

/*-----------------------------------*\
  #MAIN
\*-----------------------------------*/

main {
  margin: 15px 12px;
  margin-bottom: 50px;
  min-width: 259px;
}

/*-----------------------------------*\
  #SIDEBAR
\*-----------------------------------*/

.sidebar {
  margin-bottom: 15px;
  max-height: 112px;
  overflow: hidden;
  transition: var(--transition-2);
}

.sidebar.active {
  max-height: 420px;
}

.sidebar-info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.avatar-box {
  background: var(--bg-gradient-onyx);
  border-radius: 20px;
}

.btn-shine {
  color: var(--white-2);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  letter-spacing: -0.25px;
  margin-bottom: 10px;
  text-align: center;
  padding: 0px 45px 0px 40px;
  color: #fff;
  background: linear-gradient(
    to right,
    #fff 0,
    hsl(0, 0%, 84%) 10%,
    var(--orange-yellow-crayola) 100%
  );
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}

@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}

.info-content .title {
  color: var(--white-1);
  background: var(--onyx);
  font-size: var(--fs-8);
  font-weight: var(--fw-300);
  width: max-content;
  padding: 3px 12px;
  border-radius: 8px;
}

.text-typing {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-gradient-onyx);
  padding: 3px 10px;
  border-radius: 5px;
}

.div-text-typing {
  font-family: var(--ff-poppins);
  font-size: 13px;
  color: var(--white-1);
  font-style: italic;
}

#dynamic-text {
  transition: opacity 0.5s ease-in-out;
}

.info_more-btn {
  position: absolute;
  top: 0px;
  right: 25px;
  border-radius: 0px 0px 15px 15px;
  font-size: 13px;
  color: var(--orange-yellow-crayola);
  background: var(--border-gradient-onyx);
  padding: 10px;
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
  z-index: 1;
}

.info_more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  transition: var(--transition-1);
  z-index: -1;
}

.info_more-btn:hover,
.info_more-btn:focus {
  background: var(--bg-gradient-yellow-1);
}

.info_more-btn:hover::before,
.info_more-btn:focus::before {
  background: var(--bg-gradient-yellow-2);
}

.info_more-btn span {
  display: none;
}

.sidebar-info_more {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-2);
}

.sidebar.active .sidebar-info_more {
  opacity: 1;
  visibility: visible;
}

.contacts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info {
  max-width: calc(100% - 46px);
  width: calc(100% - 46px);
}

.contact-title {
  color: var(--light-gray-70);
  font-size: var(--fs-8);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info :is(.contact-link, time, address) {
  color: var(--white-2);
  font-size: var(--fs-7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.contact-info address {
  font-style: normal;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding-bottom: 4px;
  padding-left: 7px;
  margin: 10px 10px 10px 10px;
}

.social-item .social-link {
  color: var(--light-gray-70);
  font-size: 18px;
}

.social-item .social-link:hover {
  color: var(--vegas-gold);
}

/* Efek hover dan klik */
.contact-item:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/* Efek pada ikon */
.icon-box {
  transition: transform 0.3s ease;
}

.contact-item:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
}

/* Efek pada konten teks */
.contact-title,
.contact-link {
  transition: color 0.3s ease;
}

.contact-item:hover .contact-title,
.contact-item:hover .contact-link {
  color: hsl(45, 90%, 55%);
}

/*-----------------------------------*\
  #NAVBAR
\*-----------------------------------*/

.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-gradient-onyx);
  backdrop-filter: blur(10px);
  border: 1px solid var(--jet);
  border-radius: 12px 12px 0 0;
  box-shadow: var(--shadow-2);
  z-index: 5;
}

.navbar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.navbar-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--light-gray);
  font-size: var(--fs-8);
  padding: 12px 8px;
  transition: color var(--transition-1);
  background: none;
  border: none;
}

.navbar-link:hover,
.navbar-link:focus {
  color: var(--light-gray-70);
}

.navbar-link.active {
  color: var(--orange-yellow-crayola);
}

.navbar-link ion-icon {
  font-size: 18px;
}

.navbar-link span {
  font-size: 12px;
}

/* login button */

.li-login {
  margin-left: 10px;
}

.btn-login {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: var(--orange-yellow-crayola);
  background-size: 250%;
  background-position: left;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition-duration: 0.5s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.11);
}

.logoIcon-login {
  fill: white;
  font-size: 10px;
}

.tooltip-login {
  position: absolute;
  top: -20px;
  opacity: 0;
  background: var(--orange-yellow-crayola);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  font-size: 13px;
  align-items: center;
  justify-content: center;
  transition-duration: 0.2s;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.tooltip-login::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: var(--orange-yellow-crayola);
  background-size: 1000%;
  background-position: center;
  transform: rotate(45deg);
  bottom: -15%;
  transition-duration: 0.3s;
}

.btn-login:hover .tooltip-login {
  top: -50px;
  opacity: 1;
  transition-duration: 0.3s;
}

.btn-login:hover {
  background-position: right;
  transition-duration: 0.5s;
}

/*-----------------------------------*\
  #MAIN LOADING #LOADING PAGE #SCROLL TO BOTTOM & TOP
\*-----------------------------------*/

/* Main loading styling */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000; /* Make sure it's on top of everything */
}

/* Hide loading overlay initially */
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Display loading overlay */
.loading-overlay.active {
  display: flex;
}

/* Loading animation */
.loader {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  transform: rotate(165deg);
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  transform: translate(-50%, -50%);
}

.loader:before {
  animation: before8 2s infinite;
}

.loader:after {
  animation: after6 2s infinite;
}

@keyframes before8 {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em hsl(35, 90%, 50%), -1em 0.5em hsl(45, 90%, 55%);
  }

  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em hsl(35, 90%, 50%), 0 0.5em hsl(45, 90%, 55%);
  }

  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em hsl(35, 90%, 50%), 1em 0.5em hsl(45, 90%, 55%);
  }

  100% {
    box-shadow: 1em -0.5em hsl(35, 90%, 50%), -1em 0.5em hsl(45, 90%, 55%);
  }
}

@keyframes after6 {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em hsl(45, 90%, 55%), -0.5em -1em hsl(35, 90%, 50%);
  }

  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 hsl(45, 90%, 55%), -0.5em 0 hsl(35, 90%, 50%);
  }

  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em hsl(45, 90%, 55%), -0.5em 1em hsl(35, 90%, 50%);
  }

  100% {
    box-shadow: 0.5em 1em hsl(45, 90%, 55%), -0.5em -1em hsl(35, 90%, 50%);
  }
}

.loader {
  position: absolute;
  top: calc(50% - 1.25em);
  left: calc(50% - 1.25em);
}

/* Styling untuk SVG */
.pl {
  width: 6em;
  height: 6em;
}

.pl__ring {
  animation: ringA 2s linear infinite;
}

.pl__ring--a {
  stroke: hsl(35, 90%, 50%);
}

.pl__ring--b {
  animation-name: ringB;
  stroke: hsl(45, 90%, 55%);
}

.pl__ring--c {
  animation-name: ringC;
  stroke: hsl(45, 90%, 55%);
}

.pl__ring--d {
  animation-name: ringD;
  stroke: hsl(35, 90%, 50%);
}

/* Wrapper untuk background hitam transparan dan posisi tengah layar */
#wifi-loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5); /* Background hitam transparan */
  z-index: 9999; /* Pastikan berada di depan elemen lain */
}

/* Loader */
#wifi-loader {
  --background: hsl(35, 90%, 50%);
  --front-color: hsl(35, 90%, 50%);
  --back-color: hsl(45, 90%, 55%);
  --text-color: hsl(35, 90%, 50%);
  width: 64px;
  height: 64px;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wifi-loader svg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wifi-loader svg circle {
  position: absolute;
  fill: none;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-90deg); /* Rotasi untuk mulai animasi dari posisi atas */
  transform-origin: center;
}

/* Warna lingkaran animasi */
#wifi-loader svg circle.back {
  stroke: var(--back-color);
}

#wifi-loader svg circle.front {
  stroke: var(--front-color);
}

/* Ukuran lingkaran animasi */
#wifi-loader svg.circle-outer {
  height: 86px;
  width: 86px;
}

#wifi-loader svg.circle-outer circle {
  stroke-dasharray: 62.75 188.25;
}

#wifi-loader svg.circle-outer circle.back {
  animation: circle-outer-animation 1.8s ease infinite 0.3s;
}

#wifi-loader svg.circle-outer circle.front {
  animation: circle-outer-animation 1.8s ease infinite 0.15s;
}

#wifi-loader svg.circle-middle {
  height: 60px;
  width: 60px;
}

#wifi-loader svg.circle-middle circle {
  stroke-dasharray: 42.5 127.5;
}

#wifi-loader svg.circle-middle circle.back {
  animation: circle-middle-animation 1.8s ease infinite 0.25s;
}

#wifi-loader svg.circle-middle circle.front {
  animation: circle-middle-animation 1.8s ease infinite 0.1s;
}

#wifi-loader svg.circle-inner {
  height: 34px;
  width: 34px;
}

#wifi-loader svg.circle-inner circle {
  stroke-dasharray: 22 66;
}

#wifi-loader svg.circle-inner circle.back {
  animation: circle-inner-animation 1.8s ease infinite 0.2s;
}

#wifi-loader svg.circle-inner circle.front {
  animation: circle-inner-animation 1.8s ease infinite 0.05s;
}

/* Teks animasi */
#wifi-loader .text {
  position: absolute;
  bottom: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: lowercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: var(--text-color);
}

/* Teks animasi kliping */
#wifi-loader .text::before,
#wifi-loader .text::after {
  content: attr(data-text);
}

#wifi-loader .text::before {
  color: var(--text-color);
}

#wifi-loader .text::after {
  color: var(--front-color);
  animation: text-clip-animation 3.6s ease infinite;
  position: absolute;
  left: 0;
}

/* Keyframes animasi */
@keyframes circle-outer-animation {
  0% {
    stroke-dashoffset: 25;
  }
  25% {
    stroke-dashoffset: 0;
  }
  65% {
    stroke-dashoffset: 301;
  }
  80% {
    stroke-dashoffset: 276;
  }
  100% {
    stroke-dashoffset: 276;
  }
}

@keyframes circle-middle-animation {
  0% {
    stroke-dashoffset: 17;
  }
  25% {
    stroke-dashoffset: 0;
  }
  65% {
    stroke-dashoffset: 204;
  }
  80% {
    stroke-dashoffset: 187;
  }
  100% {
    stroke-dashoffset: 187;
  }
}

@keyframes circle-inner-animation {
  0% {
    stroke-dashoffset: 9;
  }
  25% {
    stroke-dashoffset: 0;
  }
  65% {
    stroke-dashoffset: 106;
  }
  80% {
    stroke-dashoffset: 97;
  }
  100% {
    stroke-dashoffset: 97;
  }
}

@keyframes text-clip-animation {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  50% {
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}

/* Animasi */
@keyframes ringA {
  from,
  4% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }

  12% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -335;
  }

  32% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -595;
  }

  40%,
  54% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -660;
  }

  62% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -665;
  }

  82% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -925;
  }

  90%,
  to {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -990;
  }
}

@keyframes ringB {
  from,
  12% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -110;
  }

  20% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -115;
  }

  40% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -195;
  }

  48%,
  62% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  70% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  90% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -305;
  }

  98%,
  to {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }
}

@keyframes ringC {
  from {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  8% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  28% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  36%,
  58% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  66% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  86% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  94%,
  to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

@keyframes ringD {
  from,
  8% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  16% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  36% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  44%,
  50% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  58% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  78% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  86%,
  to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

.button-close {
  position: relative;
  margin-top: 5px;
  width: 41px;
  height: 41px;
  border-radius: 100%;
  border: none;
  background: var(--orange-yellow-crayola);
  transition: background 0.5s;
}

.X-close {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1.5px;
  background-color: rgb(255, 255, 255);
  transform: translateX(-50%) rotate(45deg);
}

.Y-close {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1.5px;
  background-color: #fff;
  transform: translateX(-50%) rotate(-45deg);
}

.button-close:hover {
  background-color: rgb(211, 21, 21);
}

.button-close:active {
  background-color: rgb(130, 0, 0);
}

.button-close:hover > .close {
  animation: close 0.2s forwards 0.25s;
}

@keyframes close {
  100% {
    opacity: 1;
  }
}

/* Scroll */
.scroll-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background-color: var(--orange-yellow-crayola);
  color: white;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  bottom: 70px; /* Jarak dari bagian bawah */
  right: 18px; /* Jarak dari bagian kanan */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
  z-index: 1000; /* Pastikan tombol berada di atas konten lainnya */
}

.scroll-button:hover {
  background-color: var(--vegas-gold);
}

.scroll-button ion-icon {
  margin: 0;
}

/* CSS to prevent scrolling */
.no-scroll {
  overflow: hidden;
}

/* Add styles for loading overlay if needed */
.loading-overlay.active {
  display: block;
}

#loading,
.loading-overlay {
  /* Initially set to cover the viewport */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust as needed */
  z-index: 9999;
}

/* Hide overlays when not active */
#loading.hidden,
.loading-overlay:not(.active) {
  display: none;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .article-title {
  margin-bottom: 15px;
}

.about-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  /* text-align: justify; */
  line-height: 1.6;
  margin: 0 auto 20px;
}

.about-text p {
  margin-bottom: 20px;
}

.div-buttoncv {
  display: flex;
  left: 0px;
  gap: 10px;
}

.buttoncv {
  --width: 150px;
  --height: 35px;
  --tooltip-height: 35px;
  --tooltip-width: 90px;
  --gap-between-tooltip-to-button: 18px;
  --button-color: var(--orange-yellow-crayola);
  --tooltip-color: var(--orange-yellow-crayola);
  width: 150px;
  height: var(--height);
  background: var(--button-color);
  position: relative;
  text-align: center;
  border-radius: 7px;
  font-family: "Poppins", sans-serif;
  transition: background 0.3s;
}

.buttoncv::before {
  position: absolute;
  content: attr(data-tooltip);
  width: var(--tooltip-width);
  height: var(--tooltip-height);
  background-color: var(--tooltip-color);
  font-size: 0.9rem;
  color: #111;
  border-radius: 0.25em;
  line-height: var(--tooltip-height);
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
  left: calc(50% - var(--tooltip-width) / 2);
}

.buttoncv::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: var(--tooltip-color);
  left: calc(50% - 10px);
  bottom: calc(100% + var(--gap-between-tooltip-to-button) - 10px);
}

.buttoncv::after,
.buttoncv::before {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.textcv {
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttoncv-wrapper,
.textcv,
.iconcv {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  color: var(--white-2);
}

.textcv {
  top: 0;
}

.textcv,
.iconcv {
  transition: top 0.5s;
}

.iconcv {
  color: var(--white-2);
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconcv svg {
  width: 24px;
  height: 24px;
}

.buttoncv:hover {
  background: var(--bg-gradient-onyx);
}

.buttoncv:hover .textcv {
  top: -100%;
}

.buttoncv:hover .iconcv {
  top: 0;
}

.buttoncv:hover:before,
.buttoncv:hover:after {
  opacity: 1;
  visibility: visible;
}

.buttoncv:hover:after {
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.buttoncv:hover:before {
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}

/* From Uiverse.io by vinodjangid07 */
.button-linktree {
  width: 50px;
  height: 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange-yellow-crayola);
  border-radius: 18%;
  cursor: pointer;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.13);
  border: none;
}

.linktree {
  margin-top: 4px;
  margin-left: 1px;
  width: 23px;
}

.linktree path {
  fill: white;
}

.button-linktree:hover {
  background-color: var(--bg-gradient-onyx);
}

.button-linktree:hover .linktree {
  animation: bellRing 0.9s both;
}

/* bell ringing animation keyframes*/
@keyframes bellRing {
  0%,
  100% {
    transform-origin: top;
  }

  15% {
    transform: rotateZ(10deg);
  }

  30% {
    transform: rotateZ(-10deg);
  }

  45% {
    transform: rotateZ(5deg);
  }

  60% {
    transform: rotateZ(-5deg);
  }

  75% {
    transform: rotateZ(2deg);
  }
}

.button-linktree:active {
  transform: scale(0.8);
}

/*-----------------------------------*\
  #MUSIC BACKSOUND
\*-----------------------------------*/

.music-card {
  cursor: pointer;
  width: 100%;
  max-width: 850px;
  margin: auto;
  background-color: var(--onyx);
  box-shadow: 0 4px 8px var(--shadow-2);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.music-card:hover {
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: var(--jet);
}

.track-info {
  display: flex;
  align-items: center;
}

.track-icon {
  font-size: 22px;
  color: var(--orange-yellow-crayola);
}

.track-details {
  margin-left: 12px;
}

.track-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white-2);
}

.track-artist {
  font-size: 0.9rem;
  color: var(--light-gray-70);
}

.card-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  font-size: 24px;
  transition: 0.2s;
  cursor: pointer;
  color: var(--white-2);
}

#loveIcon {
  color: #ef4444;
  opacity: 0.5;
}

#loveIcon.liked {
  opacity: 1;
}

#starIcon {
  color: #fbbf24;
  opacity: 0.5;
}

#starIcon.starred {
  opacity: 1;
}

.progress-container {
  position: relative;
  margin: 16px 16px 8px 16px;
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--orange-yellow-crayola);
  border-radius: 3px;
}

.progress-time {
  display: flex;
  justify-content: space-between;
  padding: 0 16px 16px 16px;
  font-size: 0.85rem;
  color: var(--white-2);
}

#shuffleIcon.active,
#repeatIcon.active {
  color: #10b981; /* hijau */
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 20px;
}

.volume-icon {
  font-size: 20px;
  color: var(--white-2);
}

#volumeSlider {
  width: 100%;
  max-width: 150px;
  accent-color: #1db954; /* hijau Spotify */
}

/**
 * #service 
 */
.service {
  margin-bottom: 35px;
}

.service-title {
  margin-bottom: 20px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-item {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

/* Efek hover dan klik */
.service-item:hover {
  transform: translateY(0px) scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.service-item:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/* Efek pada ikon */
.service-icon-box {
  margin-bottom: 10px;
}

.service-icon-box img {
  margin: auto;
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon-box img {
  transform: rotate(10deg) scale(1.1);
}

/* Efek pada konten teks */
.service-content-box {
  text-align: center;
}

.service-item-title {
  margin-bottom: 7px;
  transition: color 0.3s ease;
}

.service-item-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-3);
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Ubah warna teks saat di-hover menjadi kuning */
.service-item:hover .service-item-title,
.service-item:hover .service-item-text {
  color: hsl(45, 90%, 55%); /* Mengubah warna menjadi putih saat di-hover */
}

/**
 * #testimonials 
 */

.testimonials {
  margin-bottom: 30px;
}

.testimonials-title {
  margin-bottom: 20px;
}

.testimonials-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin: 0 -15px;
  padding: 25px 15px;
  padding-bottom: 35px;
  overflow-x: auto;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.testimonials-item {
  min-width: 100%;
  scroll-snap-align: center;
}

.testimonials-avatar-box {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(15px, -25px);
  background: var(--bg-gradient-onyx);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
}

.testimonials-item-title {
  margin-bottom: 7px;
}

.testimonials-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/**
 * #testimonials-modal
 */

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 20;
  pointer-events: none;
  visibility: hidden;
}

.modal-container::-webkit-scrollbar {
  display: none;
}

.modal-container.active {
  pointer-events: all;
  visibility: visible;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsl(0, 0%, 5%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 0.8;
  visibility: visible;
  pointer-events: all;
}

.testimonials-modal {
  background: var(--eerie-black-2);
  position: relative;
  padding: 15px;
  margin: 15px 12px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  box-shadow: var(--shadow-5);
  transform: scale(1.2);
  opacity: 0;
  transition: var(--transition-1);
  z-index: 2;
}

.modal-container.active .testimonials-modal {
  transform: scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--onyx);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-2);
  font-size: 18px;
  opacity: 0.7;
}

.modal-close-btn:hover,
.modal-close-btn:focus {
  opacity: 1;
}

.modal-close-btn ion-icon {
  --ionicon-stroke-width: 50px;
}

.modal-avatar-box {
  background: var(--bg-gradient-onyx);
  width: max-content;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-2);
}

.modal-img-wrapper > img {
  display: none;
}

.modal-title {
  margin-bottom: 4px;
}

.modal-content time {
  font-size: var(--fs-6);
  color: var(--light-gray-70);
  font-weight: var(--fw-300);
  margin-bottom: 10px;
}

.modal-content p {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

/**
 * #clients 
 */

.clients {
  margin-bottom: 20px;
  position: relative;
}

.clients-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  margin: 10px -15px;
  padding: 25px;
  padding-bottom: 25px;
  overflow: auto;
}

.clients-item {
  min-width: 50%;
}

.clients-item img {
  width: 80%;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.clients-item img:hover {
  filter: grayscale(0);
}

/* Efek hover pada teks title */
.clients-title {
  transition: color 0.3s ease;
}

.clients-title:hover {
  color: hsl(45, 90%, 55%);
}

/* Efek hover pada gambar */
.clients-item img {
  width: 80%;
  filter: grayscale(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.clients-item:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}

/* Efek klik */
.clients-item:active img {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/*-----------------------------------*\
  #RESUME
\*-----------------------------------*/

/* Gaya kustom sesuai warna tombol download */
.swal2-download-button {
  background-color: #6459dd !important; /* Ganti dengan warna tombol download */
  color: #fff !important; /* Warna teks */
}
.swal2-download-button:hover {
  background-color: #6459dd !important; /* Warna saat di-hover */
}

.article-title {
  margin-bottom: 30px;
}

/**
 * education and experience 
 */

.timeline {
  margin-bottom: 30px;
}

.timeline .title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.timeline-list {
  font-size: var(--fs-6);
  margin-left: 45px;
}

.timeline-item {
  position: relative;
}

.timeline-item:not(:last-child) {
  margin-bottom: 20px;
}

.timeline-item-title {
  font-size: var(--fs-6);
  line-height: 1.3;
  margin-bottom: 7px;
}

.timeline-list span {
  color: var(--vegas-gold);
  font-weight: var(--fw-400);
  line-height: 1.6;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -30px;
  width: 1px;
  height: calc(100% + 50px);
  background: var(--jet);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -33px;
  height: 6px;
  width: 6px;
  background: var(--text-gradient-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--jet);
}

.timeline-text {
  color: var(--light-gray);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

.timeline-text-hover {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px; /* Jarak antara teks dan ikon */
  transition: color 0.3s ease-in-out;
}

.timeline-text-hover:hover {
  color: #fccf69;
}

.instagram-icon {
  font-size: 1.2rem;
  color: white;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.timeline-text-hover:hover .instagram-icon {
  color: #fccf69;
  transform: scale(1.2);
}

.timeline-text-nilai {
  color: var(--light-gray);
  font-weight: var(--fw-300);
  margin-top: -8px;
  margin-bottom: 1px;
  font-size: 0.9rem;
}

.see-more-btn {
  margin-top: 10px;
  display: inline-block;
  background-color: var(--orange-yellow-crayola);
  color: var(--eerie-black-2);
  padding: 6px 12px;
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  font-family: var(--ff-poppins);
  border: 1px solid var(--jet);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: all 0.3s ease-in-out;
}

.see-more-btn:hover {
  background-color: var(--onyx);
  color: var(--white-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}

.see-more-btn-org {
  text-decoration: none;
  cursor: pointer;
  color: white;
  transition: transform 0.3s ease-in-out;
}

.see-more-btn-org:hover {
  color: var(--orange-yellow-crayola);
}

/* Efek pada ikon */
.icon-box {
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: rotate(10deg) scale(1.1);
}

/* Efek pada teks */
.h3 {
  transition: color 0.3s ease;
}

.h3:hover {
  color: hsl(45, 90%, 55%);
}

/**
 * skills 
 */

.skill {
  margin-top: 40px;
}

.skills-title {
  margin-bottom: 30px;
}

.skills-list {
  padding: 20px;
}

.skills-item:not(:last-child) {
  margin-bottom: 15px;
}

.skill .title-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.skill .title-wrapper data {
  color: var(--light-gray);
  font-size: var(--fs-7);
  font-weight: var(--fw-300);
  transition: color 5s ease-in-out; /* Add smooth transition for text color */
}

.skill-progress-bg {
  background: var(--bg-gradient-onyx);
  width: 100%;
  height: 8px;
  border-radius: 10px;
}

.skill-progress-fill {
  background: var(--text-gradient-yellow);
  height: 100%;
  border-radius: inherit;
  transition: width 5s ease-in-out; /* Add smooth transition */
}

.animated .skill-progress-fill {
  width: 100%;
}

.animated .skill-data {
  color: var(--dark-gray); /* Change the color if needed after animation */
}

/*-----------------------------------*\
  #PORTFOLIO
\*-----------------------------------*/
.projects {
  margin-top: 12px;
}

.filter-list {
  display: none;
}

.filter-select-box {
  position: relative;
  margin-bottom: 25px;
}

.filter-select {
  background: var(--eerie-black-2);
  color: var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  cursor: pointer;
}

.filter-select.active .select-icon {
  transform: rotate(0.5turn);
}

.select-list {
  background: var(--eerie-black-2);
  position: absolute;
  top: calc(100% + 6px);
  width: 100%;
  padding: 6px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
}

.filter-select.active + .select-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.select-item button {
  background: var(--eerie-black-2);
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  text-transform: capitalize;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.select-item button:hover {
  background: hsl(240, 2%, 20%);
}

.project-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 10px;
}

.project-item {
  display: none;
}

.project-item.active {
  display: block;
  animation: scaleUp 0.25s ease forwards;
}

@keyframes scaleUp {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}

.project-item > a {
  width: 100%;
  text-decoration: none;
}

.project-img {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.project-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  transition: background 0.3s ease;
}

.project-item > a:hover .project-img::before {
  background: hsla(0, 0%, 0%, 0.5);
}

.project-item-icon-box {
  background: var(--jet);
  color: var(--orange-yellow-crayola);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 20px;
  padding: 18px;
  border-radius: 12px;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-item > a:hover .project-item-icon-box {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.project-item-icon-box ion-icon {
  --ionicon-stroke-width: 50px;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-item > a:hover img {
  transform: scale(1.1);
}

.project-title,
.project-category {
  margin-left: 10px;
}

.project-title {
  color: var(--white-2);
  font-size: var(--fs-5);
  font-weight: var(--fw-400);
  text-transform: capitalize;
  line-height: 1.3;
}

.project-category {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.project-item-icon-boxes {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  gap: 12px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.project-icon-btn {
  background: var(--jet);
  color: var(--orange-yellow-crayola);
  font-size: 20px;
  padding: 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.project-icon-btn:hover {
  transform: scale(1.1);
  background: var(--orange-yellow-crayola);
  color: var(--jet);
}

.project-item:hover .project-item-icon-boxes {
  opacity: 1;
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-posts {
  margin: 20px auto;
  width: 100%;
}

.blog-posts-list {
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 20px;
}

.blog-post-item > a {
  position: relative;
  background: var(--border-gradient-onyx);
  height: 100%;
  box-shadow: var(--shadow-4);
  border-radius: 16px;
  z-index: 1;
}

.blog-post-item > a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--eerie-black-1);
  z-index: -1;
}

.blog-post-item {
  list-style: none;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 500%; /* 100% * jumlah slide (5) */
}

.slide {
  min-width: 20%; /* 100% / jumlah slide (5) */
  box-sizing: border-box;
}

.blog-banner-box {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
}

.blog-post-item > a:hover .blog-banner-box img {
  transform: scale(1.1);
}

.blog-content {
  padding: 15px;
}

.blog-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.blog-meta :is(.blog-category, time) {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

.blog-meta .dot {
  background: var(--light-gray-70);
  width: 4px;
  height: 4px;
  border-radius: 4px;
}

.blog-item-title {
  margin-bottom: 10px;
  line-height: 1.3;
  transition: var(--transition-1);
}

.blog-post-item > a:hover .blog-item-title {
  color: var(--orange-yellow-crayola);
}

.blog-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

/* CSS for navigation buttons */
.slider .prev,
.slider .next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 1;
}

.next {
  align-items: center;
  text-align: center;
}

.prev {
  align-items: center;
  text-align: center;
}

.slider .prev {
  left: 10px;
}

.slider .next {
  right: 10px;
}

.slider .prev:hover,
.slider .next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .blog-posts-list {
    grid-template-columns: 1fr;
  }

  .slider .prev,
  .slider .next {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .blog-banner-box {
    height: 150px;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .track-info {
    width: 100%;
    justify-content: flex-start;
  }

  .track-details {
    margin-left: 10px;
  }

  .icon-btn {
    font-size: 40px;
  }

  .card-icons {
    width: 100%;
  }

  .volume-control {
    width: 100%;
    margin: 0;
  }

  #volumeSlider {
    max-width: 120px;
  }
}

/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.mapbox {
  position: relative;
  height: 300px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid var(--jet);
  overflow: hidden;
}

.mapbox figure {
  height: 100%;
}

.mapbox iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1);
}

.contact-form {
  margin-bottom: 10px;
}

.form-title {
  margin-bottom: 20px;
  text-align: left;
  color: var(--white-2);
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.form-label {
  font-weight: 500;
  color: var(--white-2);
}

.form-input {
  padding: 13px 20px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  background-color: var(--black-2);
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: 100; /* Mengatur keseluruhan teks input menjadi lebih ringan */
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input::placeholder {
  color: var(--white-3);
  font-weight: 100; /* Sudah sesuai dengan permintaan */
  font-size: var(--fs-6);
}

.form-input:focus {
  border-color: var(--orange-yellow-crayola);
}

#message {
  height: 120px;
  resize: none;
}

/* Tombol sesuai desain asli */
.form-btn {
  position: relative;
  width: 100%;
  background: var(--border-gradient-onyx);
  color: var(--orange-yellow-crayola);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: var(--fs-6);
  text-transform: capitalize;
  box-shadow: var(--shadow-3);
  z-index: 1;
  transition: var(--transition-1);
}

.form-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-1);
}

.form-btn:hover {
  background: var(--bg-gradient-yellow-1);
}

.form-btn:hover::before {
  background: var(--bg-gradient-yellow-2);
}

.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-btn:disabled:hover {
  background: var(--border-gradient-onyx);
}

.form-btn:disabled:hover::before {
  background: var(--bg-gradient-jet);
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* Mengubah warna ikon menjadi putih */
  opacity: 0.7; /* Menambahkan efek transparan agar tidak terlalu mencolok */
}

input[type="datetime-local"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1; /* Menghilangkan efek transparan saat di-hover */
}

/*-----------------------------------*\
  #NOTIFICATION
\*-----------------------------------*/

/*-----------------------------------*\
  #ADMIN
\*-----------------------------------*/

.admin-form {
  margin-bottom: 10px;
}

.form-title-admin {
  color: var(--white-2);
  text-transform: capitalize;
  font-size: var(--fs-2);
  text-align: center;
}

.about-text-admin p {
  text-align: center;
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
  margin: 8px 10px 28px 10px;
}

.form-title-admin {
  margin-top: 10px;
}

.input-wrapper-admin {
  display: grid;
  gap: 25px;
  margin-bottom: 25px;
  margin-bottom: 30px;
}

.separator-access {
  width: 100%;
  height: 1px;
  background: var(--jet);
  margin-top: 30px;
  margin-bottom: 20px;
}

.about-text-copyright p {
  text-align: center;
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
  margin: 10px 10px -10px 10px;
}

.toggle-password-icon {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--light-gray);
  cursor: pointer;
}


/*-----------------------------------*\
  #CERTIFICATE
\*-----------------------------------*/

.lb-image {
  display: block;
  margin: 0 auto;
}

.container-d {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.label-d {
  background-color: transparent;
  border: 2px solid hsl(45, 90%, 55%);
  display: flex;
  align-items: center;
  border-radius: 50px;
  width: 130px;
  height: 43px;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 5px;
  position: relative;
}

.label-d::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  width: 8px;
  height: 8px;
  transition: all 0.4s ease;
  border-radius: 100%;
  margin: auto;
  opacity: 0;
  visibility: hidden;
}

.label-d .input-d {
  display: none;
}

.label-d .title-d {
  font-size: 15px;
  color: #fff;
  transition: all 0.4s ease;
  position: absolute;
  right: 16px;
  bottom: 12px;
  text-align: center;
}

.label-d .title-d:last-child {
  opacity: 0;
  visibility: hidden;
}

.label-d .circle-d {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: hsl(45, 90%, 55%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  overflow: hidden;
}

.label-d .circle-d .icon-d {
  color: #fff;
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.label-d .circle-d .square-d {
  aspect-ratio: 1;
  width: 15px;
  border-radius: 2px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.label-d .circle-d::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: hsl(45, 80%, 45%);
  width: 100%;
  height: 0;
  transition: all 0.4s ease;
}

.label-d:has(.input-d:checked) {
  width: 45px;
  animation: installed 0.4s ease 3.5s forwards;
}

.label-d:has(.input-d:checked)::before {
  animation: rotate 3s ease-in-out 0.4s forwards;
}

.label-d .input-d:checked + .circle-d {
  animation: pulse 1s forwards, circleDelete 0.2s ease 3.5s forwards;
  rotate: 180deg;
}

.label-d .input-d:checked + .circle-d::before {
  animation: installing 3s ease-in-out forwards;
}

.label-d .input-d:checked + .circle-d .icon-d {
  opacity: 0;
  visibility: hidden;
}

.label-d .input-d:checked ~ .circle-d .square-d {
  opacity: 1;
  visibility: visible;
}

.label-d .input-d:checked ~ .title-d {
  opacity: 0;
  visibility: hidden;
}

.label-d .input-d:checked ~ .title-d:last-child {
  animation: showInstalledMessage 0.4s ease 3.5s forwards;
}

@keyframes pulse {
  0% {
    scale: 0.95;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    scale: 1;
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    scale: 0.95;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes installing {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(-90deg) translate(27px) rotate(0);
    opacity: 1;
    visibility: visible;
  }
  99% {
    transform: rotate(290deg) translate(27px) rotate(270deg);
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes installed {
  100% {
    width: 130px;
    border-color: rgb(35, 174, 35);
  }
}

@keyframes circleDelete {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes showInstalledMessage {
  100% {
    opacity: 1;
    visibility: visible;
    right: 40px;
  }
}

/* Styling tombol SweetAlert */
.swal-button {
  background-color: rgb(91, 91, 240);
  color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  transition: all 0.3s ease;
}

.swal-button:hover {
  background-color: rgb(70, 70, 200);
}

.swal-cancel-button {
  background-color: rgb(240, 91, 91);
  color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  transition: all 0.3s ease;
}

.swal-cancel-button:hover {
  background-color: rgb(200, 70, 70);
}

/*-----------------------------------*\
  #SEARCH
\*-----------------------------------*/

.search-container-portfolio {
  margin: 25px auto;
}

#searchInput {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.search-function {
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  padding: 13px 20px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  outline: none;
}

.search-function::placeholder {
  font-weight: var(--fw-500);
}

.search-function:focus {
  border-color: var(--orange-yellow-crayola);
}

.search-function:focus:invalid {
  border-color: var(--bittersweet-shimmer);
}

.project-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.button.close-button {
  align-self: flex-start;
}

.div-buttoncv {
  align-self: flex-end;
}

/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive smaller than 320px screen
 */

@media (max-width: 320px) {
  main {
    width: 350px;
  }

  .sidebar,
  article {
    width: 350px;
  }

  .div-buttoncv {
    justify-content: center;
    display: flex;
    align-items: center;
    display: grid;
  }

  .button-linktree {
    margin: auto;
  }

  .clients-item {
    min-width: calc(40% - 10px);
  }

  .project-img,
  .blog-banner-box {
    height: auto;
  }
}

/**
 * responsive larger than 360px screen
 */
@media (min-width: 360px) {
  .div-buttoncv {
    justify-content: center;
  }

  .buttoncv {
    width: 123px;
  }

  .clients-item {
    min-width: calc(40% - 10px);
  }

  .project-img,
  .blog-banner-box {
    height: auto;
  }

  .search-container-portfolio {
    margin: -5px auto 15px auto;
  }

  .button-linktree {
    width: 45px;
  }

  .navbar {
    padding: 10px 10px;
    border-radius: 16px 16px 0 0;
  }

  .navbar-link {
    padding: 3px 6px;
    font-size: 8px;
    flex-direction: column;
    gap: 5px;
  }

  .navbar-link ion-icon {
    font-size: 13px;
  }

  .navbar-link span {
    font-size: 8px;
  }

  /* Optional: kalau ingin tombol lebih responsive */
  .navbar-list {
    gap: 5px;
    flex-wrap: nowrap;
  }
}

/**
 * responsive larger than 450px screen
 */

@media (min-width: 450px) {
  /**
   * client
   */

  .clients-item {
    min-width: calc(33.33% - 10px);
  }

  /* ABOUT */

  /**
   * #PORTFOLIO, BLOG 
   */

  .project-img,
  .blog-banner-box {
    height: auto;
  }
}

/**
 * responsive larger than 580px screen
 */

@media (min-width: 580px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 32px;
    --fs-2: 24px;
    --fs-3: 26px;
    --fs-4: 18px;
    --fs-6: 15px;
    --fs-7: 15px;
    --fs-8: 12px;
  }

  /**
   * #REUSED STYLE
   */

  .sidebar,
  article {
    width: 520px;
    margin-inline: auto;
    padding: 30px;
  }

  .article-title {
    font-weight: var(--fw-600);
    padding-bottom: 15px;
  }

  .article-title::after {
    width: 40px;
    height: 5px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 18px;
  }

  /**
   * #MAIN
   */

  main {
    margin-top: 60px;
    margin-bottom: 50px;
  }

  /**
   * #SIDEBAR
   */

  .sidebar {
    max-height: 180px;
    margin-bottom: 30px;
  }

  .sidebar.active {
    max-height: 584px;
  }

  .sidebar-info {
    gap: 25px;
  }

  .avatar-box {
    border-radius: 30px;
  }

  .avatar-box img {
    width: 120px;
  }

  .info-content .name {
    margin-bottom: 15px;
  }

  .info-content .title {
    padding: 5px 18px;
  }

  .info_more-btn {
    top: -30px;
    right: -30px;
    padding: 10px 15px;
  }

  .info_more-btn span {
    display: block;
    font-size: var(--fs-8);
  }

  .info_more-btn ion-icon {
    display: none;
  }

  .separator {
    margin: 32px 0;
  }

  .contacts-list {
    gap: 20px;
  }

  .contact-info {
    max-width: calc(100% - 64px);
    width: calc(100% - 64px);
  }

  /**
   * #NAVBAR
   */

  .navbar {
    border-radius: 20px 20px 0 0;
  }

  .navbar-list {
    gap: 20px;
  }

  .navbar-link {
    --fs-8: 14px;
  }

  /**
   * #ABOUT
   */

  .about .article-title {
    margin-bottom: 20px;
  }

  .about-text {
    margin-bottom: 40px;
  }

  /* service */

  .service-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
  }

  .service-icon-box {
    margin-bottom: 0;
    margin-top: 5px;
  }

  .service-content-box {
    text-align: left;
  }

  /* testimonials */

  .testimonials-title {
    margin-bottom: 25px;
  }

  .testimonials-list {
    gap: 30px;
    margin: 0 -30px;
    padding: 30px;
    padding-bottom: 35px;
  }

  .content-card {
    padding: 30px;
    padding-top: 25px;
  }

  .testimonials-avatar-box {
    transform: translate(30px, -30px);
    border-radius: 20px;
  }

  .testimonials-avatar-box img {
    width: 80px;
  }

  .testimonials-item-title {
    margin-bottom: 10px;
    margin-left: 95px;
  }

  .testimonials-text {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }

  /* testimonials modal */

  .modal-container {
    padding: 20px;
  }

  .testimonials-modal {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 25px;
    padding: 30px;
    border-radius: 20px;
  }

  .modal-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .modal-avatar-box {
    border-radius: 18px;
    margin-bottom: 0;
  }

  .modal-avatar-box img {
    width: 65px;
  }

  .modal-img-wrapper > img {
    display: block;
    flex-grow: 1;
    width: 35px;
  }

  /* clients */

  .clients-list {
    gap: 50px;
    margin: 0 -30px;
    padding: 45px;
    scroll-padding-inline: 45px;
  }

  .clients-item {
    min-width: calc(33.33% - 35px);
  }

  /**
   * #RESUME
   */

  .timeline-list {
    margin-left: 65px;
  }

  .timeline-item:not(:last-child)::before {
    left: -40px;
  }

  .timeline-item::after {
    height: 8px;
    width: 8px;
    left: -43px;
  }

  .skills-item:not(:last-child) {
    margin-bottom: 25px;
  }

  /**
   * #PORTFOLIO, BLOG
   */

  .project-img,
  .blog-banner-box {
    border-radius: 16px;
  }

  .blog-posts-list {
    gap: 30px;
  }

  .blog-content {
    padding: 25px;
  }

  /**
   * #CONTACT
   */
  .mapbox {
    height: 380px;
    border-radius: 18px;
  }

  .input-wrapper {
    gap: 20px;
    /* margin-bottom: 30px; */
  }

  .search-function {
    padding: 15px 20px;
  }

  .form-input {
    padding: 15px 20px;
  }

  textarea.form-input {
    margin-bottom: 30px;
  }

  .form-btn {
    --fs-6: 16px;
    padding: 16px 20px;
  }

  .form-btn ion-icon {
    font-size: 18px;
  }
}

/**
 * responsive larger than 600px screen
 */

@media (min-width: 600px) {
  .navbar-link {
    flex-direction: row;
    gap: 8px;
    font-size: 14px;
  }

  .navbar-link ion-icon {
    font-size: 20px;
  }

  .navbar-link span {
    font-size: 14px;
  }
}

/**
 * responsive larger than 600px screen
 */

@media only screen and (max-width: 600px) {
  .info_more-btn {
    top: 0px;
    right: 10px;
  }

  .lb-image {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    display: block;
  }

  .lightbox {
    display: flexbox;
    margin-top: 25vh;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }

  /* Responsiveness for SweetAlert */
  .swal2-popup {
    width: 90% !important;
    font-size: 14px !important;
  }
  .swal2-title {
    font-size: 18px !important;
  }
  .swal2-content {
    font-size: 16px !important;
  }
  .swal2-confirm,
  .swal2-cancel {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
}

/**
 * responsive larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * REUSED STYLE
   */

  .sidebar,
  article {
    width: 700px;
  }

  .has-scrollbar::-webkit-scrollbar-button {
    width: 100px;
  }

  .info_more-btn {
    top: 0px;
    right: 10px;
  }

  /**
   * SIDEBAR
   */

  .contacts-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }

  /**
   * NAVBAR
   */

  .navbar-link {
    --fs-8: 15px;
  }

  /**
   * ABOUT
   */

  /* testimonials modal */

  .testimonials-modal {
    gap: 35px;
    max-width: 680px;
  }

  .modal-avatar-box img {
    width: 80px;
  }

  /**
   * PORTFOLIO
   */

  .article-title {
    padding-bottom: 20px;
  }

  .filter-select-box {
    display: none;
  }

  .filter-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding-left: 5px;
    margin-bottom: 30px;
  }

  .filter-item button {
    color: var(--light-gray);
    font-size: var(--fs-5);
    transition: var(--transition-1);
  }

  .filter-item button:hover {
    color: var(--light-gray-70);
  }

  .filter-item button.active {
    color: var(--orange-yellow-crayola);
  }

  /* portfolio and blog grid */

  .project-list,
  .blog-posts-list {
    grid-template-columns: 1fr 1fr;
  }

  /**
   * CONTACT
   */

  .input-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .form-btn {
    width: max-content;
    margin-left: auto;
  }
}

/**
 * responsive larger than 1024px screen
 */

@media (min-width: 1024px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
    * shadow
    */

    --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.125);
    --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.125);
    --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.125);
  }

  /**
   * REUSED STYLE
   */

  .sidebar,
  article {
    width: 970px;
    box-shadow: var(--shadow-5);
  }

  /**
   * MAIN 
   */

  main {
    margin-bottom: 60px;
  }

  .main-content {
    position: relative;
    width: max-content;
    margin: auto;
  }

  /**
   * NAVBAR
   */

  .navbar {
    position: absolute;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: max-content;
    border-radius: 0 20px;
    padding: 0 20px;
    box-shadow: none;
  }

  .navbar-list {
    gap: 8px;
    padding: 13px 20px;
  }

  .navbar-link {
    font-weight: var(--fw-500);
  }

  /**
   * ABOUT
   */

  /* service */

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
  }

  /* testimonials */

  .testimonials-item {
    min-width: calc(50% - 15px);
  }

  /* clients */

  .clients-item {
    min-width: calc(25% - 38px);
  }

  /**
   * PORTFOLIO
   */

  .project-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * BLOG
   */

  .blog-banner-box {
    height: 230px;
  }
}

/**
 * responsive larger than 1250px screen
 */

@media (min-width: 1250px) {
  /**
   * RESET
   */

  body::-webkit-scrollbar {
    width: 20px;
  }

  body::-webkit-scrollbar-track {
    background: var(--smoky-black);
  }

  body::-webkit-scrollbar-thumb {
    border: 5px solid var(--smoky-black);
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 20px;
    box-shadow: inset 1px 1px 0 hsla(0, 0%, 100%, 0.11),
      inset -1px -1px 0 hsla(0, 0%, 100%, 0.11);
  }

  body::-webkit-scrollbar-thumb:hover {
    background: hsla(0, 0%, 100%, 0.15);
  }

  body::-webkit-scrollbar-button {
    height: 60px;
  }

  /**
   * REUSED STYLE
   */

  .sidebar,
  article {
    width: auto;
  }

  article {
    min-height: 100%;
  }

  /**
   * MAIN
   */

  main {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }

  .main-content {
    min-width: 75%;
    width: 75%;
    margin: 0;
  }

  /**
   * SIDEBAR
   */

  .sidebar {
    position: sticky;
    top: 60px;
    max-height: max-content;
    height: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    z-index: 1;
  }

  .sidebar-info {
    flex-direction: column;
  }

  .avatar-box img {
    width: 150px;
  }

  .info-content .name {
    white-space: nowrap;
    text-align: center;
  }

  .info-content .title {
    margin: auto;
  }

  .info_more-btn {
    display: none;
  }

  .sidebar-info_more {
    opacity: 1;
    visibility: visible;
  }

  .contacts-list {
    grid-template-columns: 1fr;
  }

  .contact-info :is(.contact-link) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-info :is(.contact-link, time, address) {
    --fs-7: 14px;
    font-weight: var(--fw-300);
  }

  .separator:last-of-type {
    margin: 15px 0;
    opacity: 0;
  }

  .social-list {
    justify-content: center;
  }

  /**
	 * RESUME
	 */

  .timeline-text {
    max-width: 700px;
  }
}
