/*-----------------------------------*\
  #style.css
\*-----------------------------------*/


/**
 * copyright 2022 @codewithsadee
 */





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

:root {

    /**
     * colors
     */
  
    /* gradient */
  
    --bg-gradient-onyx: linear-gradient(
      to bottom right, 
      hsl(240, 1%, 25%) 3%, 
      hsl(0, 0%, 19%) 97%
    );
    --bg-gradient-jet: linear-gradient(
      to bottom right, 
      hsla(240, 1%, 18%, 0.251) 0%, 
      hsla(240, 2%, 11%, 0) 100%
    ), hsl(240, 2%, 13%);
    --bg-gradient-yellow-1: linear-gradient(
      to bottom right, 
      hsl(45, 100%, 71%) 0%, 
      hsla(36, 100%, 69%, 0) 50%
    );
    --bg-gradient-yellow-2: linear-gradient(
      135deg, 
      hsla(45, 100%, 71%, 0.251) 0%, 
      hsla(35, 100%, 68%, 0) 59.86%
    ), hsl(240, 2%, 13%);
    --border-gradient-onyx: linear-gradient(
      to bottom right, 
      hsl(0, 0%, 25%) 0%, 
      hsla(0, 0%, 25%, 0) 50%
    );
    --text-gradient-yellow: linear-gradient(
      to right, 
      hsl(45, 100%, 72%), 
      hsl(35, 100%, 68%)
    );
  
    /* solid */
  
    --jet: hsl(0, 0%, 22%);
    --onyx: hsl(240, 1%, 17%);
    --eerie-black-1: hsl(240, 2%, 13%);
    --eerie-black-2: hsl(240, 2%, 12%);
    --smoky-black: hsl(0, 0%, 7%);
    --white-1: hsl(0, 0%, 100%);
    --white-2: hsl(0, 0%, 98%);
    --orange-yellow-crayola: hsl(45, 100%, 72%);
    --vegas-gold: hsl(45, 54%, 58%);
    --light-gray: hsl(0, 0%, 84%);
    --light-gray-70: hsla(0, 0%, 84%, 0.7);
    --bittersweet-shimmer: hsl(0, 43%, 51%);
  
    /**
     * 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); }
  
  
  
  
  
  /*-----------------------------------*\
    #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;
  }
  /* social-media icons */
  .socials-icons{
    color: var(--orange-yellow-crayola);
  
  }
  
  .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: 75px;
    min-width: 259px;
  }
  
  
  
  
  
  /*-----------------------------------*\
    #SIDEBAR
  \*-----------------------------------*/
  
  .sidebar {
    margin-bottom: 15px;
    max-height: 405px;
    overflow: visible;
    transition: var(--transition-2);
  }
  
  .sidebar.active { max-height: 405px; }
  
  .sidebar-info {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
  
  .avatar-box {
    background: var(--eerie-black-2);
/*     border-radius: 20px; */
  }

.avatar-box img {
    background: var(--eerie-black-2); /* Matches the container background */
    width: 170px; /* Maintain original width */
    height: 170px; /* Ensure equal height for perfect circle */
    border-radius: 50%; /* Perfect circle */
    object-fit: cover; /* Ensure image covers the circle properly */
    padding: 5px; /* Optional: adds a little inner padding for emphasis */
    box-shadow: var(--shadow-2); /* Add subtle shadow for depth */
    transition: all 0.3s ease; /* Smooth transitions */
    border: 3px solid var(--orange-yellow-crayola); /* Add a subtle border */
}

.avatar-box img:hover {
    transform: scale(1.05); /* Slight scale on hover */
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3); /* Enhanced shadow on hover */
}

/* Add a subtle rotation animation for the avatar */
.avatar-box {
    position: relative;
    overflow: hidden;
}

.avatar-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--orange-yellow-crayola), transparent);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.avatar-box:hover::before {
    opacity: 0.1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.avatar-box img {
    position: relative;
    z-index: 2;
}
 
  .info-content .name {
    color: var(--white-2);
    font-size: var(--fs-3);
    font-weight: var(--fw-500);
    letter-spacing: -0.25px;
    margin-bottom: 10px;
  }
  
  .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;
  }
  
  .info_more-btn {
    display: none;
  }
  
  .info_more-btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    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: 1;
    visibility: visible;
    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;
    display: block !important;
  }
  
  .contact-info :is(.contact-link, time, address) {
    color: var(--white-2);
    font-size: var(--fs-7);
  }
  
  .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;
  }
  
  .social-item .social-link {
    color: var(--light-gray-70);
    font-size: 18px;
  }
  
  
  .social-item .social-link:hover { color: var(--light-gray); }
  
  
  
  
  
  /*-----------------------------------*\
    #NAVBAR
  \*-----------------------------------*/
  
  .navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: hsla(240, 1%, 17%, 0.75);
    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 {
    color: var(--light-gray);
    font-size: var(--fs-8);
    padding: 20px 7px;
    transition: color var(--transition-1);
  }
  
  .navbar-link:hover,
  .navbar-link:focus { color: var(--light-gray-70); }
  
  .navbar-link.active { color: var(--orange-yellow-crayola); }
  
  
  
  
  
  /*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/

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

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

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

  /* About Section Animations */
  .animated-intro {
    background: var(--text-gradient-yellow);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: slideInFromLeft 1s ease-out;
    position: relative;
    overflow: hidden;
  }

  .animated-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
  }

  @keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
  }

  .intro-content {
    position: relative;
  }

  .intro-paragraph {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .intro-paragraph[data-delay="0.2s"] {
    animation-delay: 0.2s;
  }

  .intro-paragraph[data-delay="0.6s"] {
    animation-delay: 0.6s;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .highlight-text {
    color: var(--orange-yellow-crayola);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
  }

  .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-gradient-yellow);
    transition: width 0.5s ease;
  }

  .intro-paragraph:hover .highlight-text::after {
    width: 100%;
  }

  .animated-text {
    color: var(--light-gray);
    font-style: italic;
    position: relative;
    transition: all 0.3s ease;
  }

  .animated-text:hover {
    color: var(--orange-yellow-crayola);
    transform: scale(1.05);
  }

  .animated-title {
    position: relative;
    animation: slideInFromRight 1s ease-out;
    margin-bottom: 2rem;
  }

  .animated-title::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--text-gradient-yellow);
    animation: expandLine 1.5s ease forwards;
    animation-delay: 0.5s;
  }

  @keyframes expandLine {
    from { width: 0; }
    to { width: 100px; }
  }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  
  
  /**
   * #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;
  }
  
  .service-item::before {
    content: "";
    position: absolute;
    inset: 1px;
    background: var(--bg-gradient-jet);
    border-radius: inherit;
    z-index: -1;
  }
  
  .service-icon-box { margin-bottom: 10px; }
  
  .service-icon-box img { margin: auto; }
  
  .service-content-box { text-align: center; }
  
  .service-item-title { margin-bottom: 7px; }
  
  .service-item-text {
    color: var(--light-gray);
    font-size: var(--fs-6);
    font-weight: var(--fw-3);
    line-height: 1.6;
  }
  
  
  /**
   * #hobbies 
   */
  
  .hobbies { 
    margin-bottom: 30px; 
    display: block;
  }
  
  .hobbies-title { 
    margin-bottom: 20px; 
    display: block;
  }
  
  .hobbies-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    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;
    min-height: 200px;
  }
  
  .hobbies-item {
    min-width: 100%;
    scroll-snap-align: center;
  }
  
  /* .hobbies-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);
  } */
  
  .hobbies-item-title { margin-bottom: 7px; }
  
  .hobbies-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;
  }

  /* Enhanced Hobbies Animations */
  .hobbies-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: slideInUp 0.8s ease forwards;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .hobbies-item:nth-child(1) { animation-delay: 0.1s; }
  .hobbies-item:nth-child(2) { animation-delay: 0.2s; }
  .hobbies-item:nth-child(3) { animation-delay: 0.3s; }
  .hobbies-item:nth-child(4) { animation-delay: 0.4s; }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(50px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .content-card {
    position: relative;
    background: var(--border-gradient-onyx);
    padding: 20px;
    padding-top: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-2);
    cursor: pointer;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
  }

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

  .content-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
  }

  .content-card:hover::after {
    left: 100%;
  }

  .content-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
  }

  .content-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 193, 7, 0.02));
  }

  .hobbies-text {
    display: block;
    color: var(--light-gray);
    font-size: var(--fs-6);
    font-weight: var(--fw-300);
    line-height: 1.6;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    margin-top: 10px;
  }
  
  .hobbies-item:hover .hobbies-text {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInText 0.5s ease forwards;
  }

  @keyframes fadeInText {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hobbies-item-title {
    margin-bottom: 20px;
    margin-left: 95px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .hobbies-item:hover .hobbies-item-title {
    color: var(--orange-yellow-crayola);
    transform: translateX(5px);
  }
  
  .hobbies-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);
    transition: all 0.4s ease;
    z-index: 2;
  }

  .hobbies-item:hover .hobbies-avatar-box {
    transform: translate(15px, -25px) scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
  }

  .hobby-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    filter: grayscale(0.2);
  }

  .hobbies-item:hover .hobby-icon {
    transform: scale(1.2) rotate(10deg);
    filter: grayscale(0) brightness(1.2);
  }

  /* Floating animation for hobby cards - only on hover */
  .hobbies-item:hover {
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  /* Pulse effect for hobby icons */
  .hobbies-avatar-box {
    animation: pulse 3s ease-in-out infinite;
  }

  .hobby-icon {
    animation: iconPulse 4s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: translate(15px, -25px) scale(1); }
    50% { transform: translate(15px, -25px) scale(1.05); }
  }

  @keyframes iconPulse {
    0%, 100% { 
      transform: scale(1);
      filter: grayscale(0.2);
    }
    50% { 
      transform: scale(1.1);
      filter: grayscale(0) brightness(1.1);
    }
  }
  
  
  
  
  /**
   * #hobbies-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;
  }
  
  .hobbies-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 .hobbies-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: 15px; }
  
  .clients-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin: 0 -15px;
    padding: 25px;
    padding-bottom: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 25px;
  }
  
  .clients-item {
    min-width: 50%;
    scroll-snap-align: start;
  }
  
  .clients-item img {
    width: 100%;
    filter: grayscale(1);
    transition: var(--transition-1);
  }
  
  .clients-item img:hover { filter: grayscale(0); }
  
  
  
  
  
  /*-----------------------------------*\
    #RESUME
  \*-----------------------------------*/
  
  .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;
  }

  /* Resume Section Animations */
  .timeline-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.2s);
  }

  .timeline-item:nth-child(1) { --item-index: 0; }
  .timeline-item:nth-child(2) { --item-index: 1; }
  .timeline-item:nth-child(3) { --item-index: 2; }
  .timeline-item:nth-child(4) { --item-index: 3; }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Interactive Timeline Items */
  .timeline-item {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
  }

  .timeline-item:hover::before {
    left: 100%;
  }

  .timeline-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 193, 7, 0.02));
  }

  .timeline-item-title {
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
  }

  .timeline-item:hover .timeline-item-title {
    color: var(--orange-yellow-crayola);
  }

  .timeline-text {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }

  .timeline-item:hover .timeline-text {
    color: var(--white-2);
  }

  /* Expandable Content Animation */
  .timeline-text {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .timeline-item.expanded .timeline-text {
    max-height: 1000px;
  }

  /* Specialization Cards Animation */
  .specialization-card {
    background: var(--border-gradient-onyx);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .specialization-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .specialization-card:hover::before {
    opacity: 1;
  }

  .specialization-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
  }

  .specialization-card-content {
    position: relative;
    z-index: 2;
  }

  /* Progress Bar Animation */
  .progress-bar {
    width: 100%;
    height: 4px;
    background: var(--jet);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
  }

  .progress-fill {
    height: 100%;
    background: var(--text-gradient-yellow);
    border-radius: 2px;
    width: 0;
    transition: width 2s ease;
  }

  .specialization-card:hover .progress-fill {
    width: 100%;
  }

  /* Floating Icons Animation */
  .floating-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--orange-yellow-crayola);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  /* Staggered Animation for Lists */
  .timeline-list {
    animation: slideInFromLeft 0.8s ease forwards;
  }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Interactive Bullet Points */
  .timeline-text b {
    position: relative;
    transition: all 0.3s ease;
  }

  .timeline-text b::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-yellow-crayola);
    transition: width 0.3s ease;
  }

  .timeline-item:hover .timeline-text b::after {
    width: 100%;
  }

  /* Pulse Animation for Icons */
  .icon-box {
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  /* Experience Cards with 3D Effect */
  .experience-card {
    perspective: 1000px;
    transition: all 0.3s ease;
  }

  .experience-card:hover {
    transform: rotateY(5deg) rotateX(5deg);
  }

  /* Specialization Grid Layout */
  .specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  /* Skill Tags */
  .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
  }

  .skill-tag {
    background: rgba(255, 193, 7, 0.1);
    color: var(--orange-yellow-crayola);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--fs-8);
    font-weight: var(--fw-500);
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
  }

  .skill-tag:hover {
    background: var(--orange-yellow-crayola);
    color: var(--smoky-black);
    transform: translateY(-2px);
  }

  /* Expand Indicator */
  .expand-indicator {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: var(--fs-8);
    color: var(--orange-yellow-crayola);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
  }

  .timeline-item:hover .expand-indicator {
    opacity: 1;
  }

  .timeline-item.expanded .expand-indicator {
    opacity: 0;
  }

  /* Timeline Date Styling */
  .timeline-date {
    color: var(--vegas-gold);
    font-weight: var(--fw-400);
    font-size: var(--fs-7);
    display: block;
    margin-bottom: 10px;
  }

  /* Enhanced Timeline Item Styling */
  .timeline-item {
    position: relative;
    padding-bottom: 40px;
  }

  /* Certificate Link Styling */
  .certificate-link {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: var(--fs-8);
    color: var(--orange-yellow-crayola);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    font-weight: var(--fw-500);
  }

  .specialization-card:hover .certificate-link {
    opacity: 1;
  }

  /* Responsive Animation Adjustments */
  @media (max-width: 768px) {
    .timeline-item:hover {
      transform: translateY(-3px) scale(1.01);
    }
    
    .specialization-card:hover {
      transform: translateY(-5px) scale(1.02);
    }

    .specialization-grid {
      grid-template-columns: 1fr;
    }

    /* Mobile optimizations for about page */
    .animated-intro {
      font-size: 2rem;
    }

    .intro-paragraph {
      font-size: var(--fs-5);
    }

    .hobbies-item:hover {
      transform: translateY(-5px) scale(1.01);
    }

    .content-card:hover {
      transform: translateY(-5px) scale(1.01);
    }
  }

  @media (max-width: 480px) {
    .animated-intro {
      font-size: 1.8rem;
    }

    .hobbies-item-title {
      margin-left: 80px;
      font-size: var(--fs-5);
    }

    .hobbies-avatar-box {
      transform: translate(10px, -20px);
    }

    .hobbies-item:hover .hobbies-avatar-box {
      transform: translate(10px, -20px) scale(1.05) rotate(3deg);
    }
  }

  @media (min-width: 768px) {
    .specialization-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  
  /**
   * skills 
   */
  
   body {
    font-family: "Montserrat", sans-serif;
    background: #14171E;
    color: #f8fafc;
}

/* .app {
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    text-align: center;
}

header h1 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    header h1 {
        font-size: 3rem;
    }
}

.tag-list {
    width: 30rem;
    max-width: 90vw;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 1rem 0;
    position: relative;
    padding: 1.5rem 0;
    overflow: hidden;
}

.loop-slider .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
}

.tag {
    display: flex;
    align-items: center;
    gap: 0 0.2rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    background-color: #334155;
    border-radius: 0.4rem;
    padding: 0.7rem 1rem;
    margin-right: 1rem;
    box-shadow: 0 0.1rem 0.2rem rgb(0 0 0 / 20%), 0 0.1rem 0.5rem rgb(0 0 0 / 30%),
    0 0.2rem 1.5rem rgb(0 0 0 / 40%);
}

.tag span {
    font-size: 1.2rem;
    color: #64748b;
}

.fade {
  pointer-events: none;
  background: linear-gradient(
      90deg,
      #14171E, 
      transparent 30%, 
      transparent 70%, 
      #14171E
  );
  position: absolute;
  inset: 0;
}


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

   */
  /*-----------------------------------*\
    #PORTFOLIO
  \*-----------------------------------*/
  
  /* Portfolio Introduction Styles */
  .portfolio-intro {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .intro-statement {
    background: var(--border-gradient-onyx);
    padding: 25px 30px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    animation: slideInFromTop 1s ease-out;
  }

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

  .intro-text {
    font-size: var(--fs-4);
    font-weight: var(--fw-500);
    color: var(--white-2);
    margin: 0;
    position: relative;
    z-index: 2;
  }

  .highlight-emoji {
    font-size: 1.5em;
    margin: 0 10px;
    animation: bounce 2s infinite;
    display: inline-block;
  }

  .highlight-emoji:nth-child(2) {
    animation-delay: 0.5s;
  }

  /* Mobile optimizations for portfolio intro */
  @media (max-width: 768px) {
    .portfolio-intro {
      position: relative;
      transform: none !important;
    }
    
    .intro-statement {
      animation: slideInFromTop 1s ease-out;
    }
    
    .highlight-emoji {
      animation: gentleBounce 3s infinite;
    }
  }

  @keyframes gentleBounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-5px);
    }
    60% {
      transform: translateY(-2px);
    }
  }

  @keyframes slideInFromTop {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }

  /* Portfolio CTA Styles */
  .portfolio-cta {
    margin-top: 50px;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
  }

  .cta-container {
    background: var(--border-gradient-onyx);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
  }

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

  .cta-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
  }

  .cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .cta-title {
    font-size: var(--fs-2);
    font-weight: var(--fw-600);
    color: var(--orange-yellow-crayola);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
  }

  .cta-text {
    font-size: var(--fs-5);
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-text .highlight-text {
    color: var(--orange-yellow-crayola);
    font-weight: var(--fw-600);
    position: relative;
  }

  .cta-text .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-gradient-yellow);
    animation: expandLine 2s ease forwards;
  }

  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
  }

  .cta-btn:hover::before {
    left: 100%;
  }

  .cta-btn.primary {
    background: var(--text-gradient-yellow);
    color: var(--smoky-black);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
  }

  .cta-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
  }

  .cta-btn.secondary {
    background: var(--border-gradient-onyx);
    color: var(--white-2);
    border: 1px solid var(--jet);
  }

  .cta-btn.secondary::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg-gradient-jet);
    border-radius: inherit;
    z-index: -1;
  }

  .cta-btn.secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
    color: var(--orange-yellow-crayola);
  }

  .cta-btn ion-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .cta-btn:hover ion-icon {
    transform: scale(1.2) rotate(5deg);
  }

  @keyframes expandLine {
    from { width: 0; }
    to { width: 100%; }
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  @keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
  }

  .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);
  }
  
  .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: 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;
  }
  
  .select-item button:hover { --eerie-black-2: hsl(240, 2%, 20%); }
  
  .project-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 10px;
  }
  
  .project-item { 
    display: none;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .project-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: projectSlideIn 0.8s ease forwards;
  }

  .project-item:nth-child(1).active { animation-delay: 0.1s; }
  .project-item:nth-child(2).active { animation-delay: 0.2s; }
  .project-item:nth-child(3).active { animation-delay: 0.3s; }
  .project-item:nth-child(4).active { animation-delay: 0.4s; }
  .project-item:nth-child(5).active { animation-delay: 0.5s; }
  
  @keyframes projectSlideIn {
    0% { 
      opacity: 0;
      transform: translateY(50px) scale(0.8) rotateX(20deg);
    }
    50% {
      opacity: 0.7;
      transform: translateY(10px) scale(0.95) rotateX(5deg);
    }
    100% { 
      opacity: 1;
      transform: translateY(0) scale(1) rotateX(0deg);
    }
  }

  @keyframes scaleUp {
    0% { transform: scale(0.5); }
    100% { transform: scale(1); }
  }
  
  .project-item > a { 
    width: 100%;
    display: block;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
    overflow: hidden;
    background: var(--border-gradient-onyx);
    padding: 5px;
  }

  .project-item > a::before {
    content: "";
    position: absolute;
    inset: 1px;
    background: var(--bg-gradient-jet);
    border-radius: inherit;
    z-index: -1;
    transition: all 0.4s ease;
  }

  .project-item > a:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
  }

  .project-item > a:hover::before {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
  }
  
  .project-img {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: all 0.4s ease;
  }
  
  .project-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    transition: all 0.4s ease;
  }
  
  .project-item > a:hover .project-img::before { 
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(255, 193, 7, 0.1));
  }

  .project-item > a:hover .project-img {
    transform: scale(1.05);
  }
  
  .project-item-icon-box {
    --scale: 0.8;
  
    background: var(--jet);
    color: var(--orange-yellow-crayola);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(var(--scale));
    font-size: 20px;
    padding: 18px;
    border-radius: 12px;
    opacity: 0;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-item-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text-gradient-yellow);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  
  .project-item > a:hover .project-item-icon-box {
    --scale: 1.1;
    opacity: 1;
    transform: translate(-50%, -50%) scale(var(--scale)) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
  }

  .project-item > a:hover .project-item-icon-box::before {
    opacity: 0.1;
  }
  
  .project-item-icon-box ion-icon { 
    --ionicon-stroke-width: 50px;
    transition: all 0.3s ease;
  }

  .project-item > a:hover .project-item-icon-box ion-icon {
    transform: scale(1.2) rotate(-5deg);
  }
  
  .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-1);
  }
  
  .project-item > a:hover img { transform: scale(1.1); }
  
  .project-title,
  .project-category { 
    margin-left: 10px;
    transition: all 0.3s ease;
  }
  
  .project-title {
    color: var(--white-2);
    font-size: var(--fs-5);
    font-weight: var(--fw-400);
    text-transform: capitalize;
    line-height: 1.3;
    position: relative;
    z-index: 2;
  }

  .project-item > a:hover .project-title {
    color: var(--orange-yellow-crayola);
    transform: translateX(5px);
  }
  
  .project-category {
    color: var(--light-gray-70);
    font-size: var(--fs-6);
    font-weight: var(--fw-300);
    position: relative;
    z-index: 2;
  }

  .project-item > a:hover .project-category {
    color: var(--white-2);
    transform: translateX(5px);
  }

  /* Add floating animation to project cards */
  .project-item.active {
    animation: projectSlideIn 0.8s ease forwards, float 6s ease-in-out infinite 1s;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
  }

  /* Add pulse effect to project images */
  .project-img img {
    transition: all 0.4s ease;
  }

  .project-item > a:hover img { 
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1) contrast(1.1);
  }

  /* Add shimmer effect to project cards */
  .project-item > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
  }

  .project-item > a:hover::after {
    left: 100%;
  }
  
  
  
  
  
  /*-----------------------------------*\
    #other
  \*-----------------------------------*/
  
  .other-text {
    color: var(--light-gray);
    font-size: var(--fs-6);
    font-weight: var(--fw-300);
    line-height: 1.6;
  }
  
  
  .other-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 10px;
  }
  
  .other-item { display: none; }
  
  .other-item.active {
    display: block;
    animation: scaleUp 0.25s ease forwards;
  }
  
  @keyframes scaleUp {
    0% { transform: scale(0.5); }
    100% { transform: scale(1); }
  }
  
  .other-item > a { width: 100%; }
  
  .other-img {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
  }
  
  .other-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    transition: var(--transition-1);
  }
  
  .other-item > a:hover .other-img::before { background: hsla(0, 0%, 0%, 0.5); }
  
  .other-item-icon-box {
    --scale: 0.8;
  
    background: var(--jet);
    color: var(--orange-yellow-crayola);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(var(--scale));
    font-size: 20px;
    padding: 18px;
    border-radius: 12px;
    opacity: 0;
    z-index: 1;
    transition: var(--transition-1);
  }
  
  .other-item > a:hover .other-item-icon-box {
    --scale: 1;
    opacity: 1;
  }
  
  .other-item-icon-box ion-icon { --ionicon-stroke-width: 50px; }
  
  .other-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-1);
  }
  
  .other-item > a:hover img { transform: scale(1.1); }
  
  .other-title,
  .other-category { margin-left: 10px; }
  
  .other-title {
    color: var(--white-2);
    font-size: var(--fs-5);
    font-weight: var(--fw-400);
    text-transform: capitalize;
    line-height: 1.3;
  }
  
  .other-category {
    color: var(--light-gray-70);
    font-size: var(--fs-6);
    font-weight: var(--fw-300);
  }
  
  
  
  /*-----------------------------------*\
    #CONTACT
  \*-----------------------------------*/
  
  /* Contact Introduction Styles */
  .contact-intro {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .intro-content {
    background: var(--border-gradient-onyx);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    animation: slideInFromTop 1s ease-out;
  }

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

  .intro-title {
    font-size: var(--fs-2);
    font-weight: var(--fw-600);
    color: var(--orange-yellow-crayola);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
  }

  .intro-text {
    font-size: var(--fs-5);
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
  }

  .stat-item:nth-child(1) { animation-delay: 0.2s; }
  .stat-item:nth-child(2) { animation-delay: 0.4s; }
  .stat-item:nth-child(3) { animation-delay: 0.6s; }

  .stat-number {
    display: block;
    font-size: var(--fs-1);
    font-weight: var(--fw-600);
    color: var(--orange-yellow-crayola);
    margin-bottom: 5px;
    animation: countUp 2s ease forwards;
  }

  .stat-label {
    font-size: var(--fs-7);
    color: var(--light-gray-70);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  @keyframes countUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  .mapbox {
    position: relative;
    height: 250px;
    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: 40px;
    animation: slideInFromBottom 1s ease-out;
  }
  
  .form-title { 
    margin-bottom: 30px;
    text-align: center;
    position: relative;
  }

  .form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--text-gradient-yellow);
    border-radius: 2px;
    animation: expandLine 1.5s ease forwards;
  }
  
  .input-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }

  .input-group {
    position: relative;
    margin-bottom: 25px;
    animation: slideInFromLeft 0.8s ease forwards;
  }

  .input-group:nth-child(1) { animation-delay: 0.1s; }
  .input-group:nth-child(2) { animation-delay: 0.2s; }
  .textarea-group { animation-delay: 0.3s; }

  .input-label {
    display: block;
    font-size: var(--fs-7);
    font-weight: var(--fw-500);
    color: var(--orange-yellow-crayola);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .input-group:focus-within .input-label {
    color: var(--white-2);
    transform: translateX(5px);
  }
  
  .form-input {
    color: var(--white-2);
    font-size: var(--fs-6);
    font-weight: var(--fw-400);
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--jet);
    border-radius: 15px;
    outline: none;
    background: var(--eerie-black-2);
    transition: all 0.3s ease;
    position: relative;
  }

  .form-input::placeholder { 
    font-weight: var(--fw-500);
    color: var(--light-gray-70);
    transition: all 0.3s ease;
  }

  .form-input:focus { 
    border-color: var(--orange-yellow-crayola);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
  }

  .form-input:focus::placeholder {
    color: var(--orange-yellow-crayola);
    transform: translateY(-5px);
  }

  .input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-gray-70);
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 2;
  }

  .input-group:focus-within .input-icon {
    color: var(--orange-yellow-crayola);
    transform: translateY(-50%) scale(1.2);
  }
  
  textarea.form-input {
    min-height: 120px;
    height: 120px;
    max-height: 200px;
    resize: vertical;
    padding-top: 15px;
  }
  
  textarea.form-input::-webkit-resizer { display: none; }
  
  .form-input:focus:invalid { 
    border-color: var(--bittersweet-shimmer);
    box-shadow: 0 0 20px rgba(255, 99, 99, 0.2);
  }

  .form-input:valid {
    border-color: var(--orange-yellow-crayola);
  }
  
  .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: 18px 30px;
    border-radius: 15px;
    font-size: var(--fs-5);
    font-weight: var(--fw-500);
    text-transform: capitalize;
    box-shadow: var(--shadow-3);
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    animation: slideInFromBottom 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
    transform: translateY(30px);
  }

  .form-btn.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .form-btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    background: var(--bg-gradient-jet);
    border-radius: inherit;
    z-index: -1;
    transition: all 0.4s ease;
  }

  .form-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
  }

  .form-btn:hover::after {
    left: 100%;
  }
  
  .form-btn ion-icon { 
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }

  .btn-loading {
    display: none;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--orange-yellow-crayola);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .form-btn.loading .btn-content {
    opacity: 0;
  }

  .form-btn.loading .btn-loading {
    display: flex;
  }
  
  .form-btn:hover { 
    background: var(--bg-gradient-yellow-1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.3);
  }
  
  .form-btn:hover::before { background: var(--bg-gradient-yellow-2); }

  .form-btn:hover ion-icon {
    transform: scale(1.2) rotate(10deg);
  }
  
  .form-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }
  
  .form-btn:disabled:hover { 
    background: var(--border-gradient-onyx);
    transform: none;
    box-shadow: var(--shadow-3);
  }
  
  .form-btn:disabled:hover::before { background: var(--bg-gradient-jet); }

  /* Contact Methods Styles */
  .contact-methods {
    margin-top: 50px;
    animation: slideInFromBottom 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
  }

  .methods-title {
    text-align: center;
    font-size: var(--fs-2);
    font-weight: var(--fw-600);
    color: var(--white-2);
    margin-bottom: 30px;
    position: relative;
  }

  .methods-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--text-gradient-yellow);
    border-radius: 2px;
    animation: expandLine 1.5s ease forwards;
  }

  .methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
    justify-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .method-card {
    background: var(--border-gradient-onyx);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: slideInUp 0.8s ease forwards;
  }

  .method-card:nth-child(1) { animation-delay: 0.1s; }
  .method-card:nth-child(2) { animation-delay: 0.2s; }
  .method-card:nth-child(3) { animation-delay: 0.3s; }

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

  .method-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
  }

  .method-card:hover::after {
    left: 100%;
  }

  .method-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
  }

  .method-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
  }

  .method-icon {
    width: 60px;
    height: 60px;
    background: var(--text-gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }

  .method-icon ion-icon {
    font-size: 24px;
    color: var(--smoky-black);
    transition: all 0.3s ease;
  }

  .method-card:hover .method-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
  }

  .method-card:hover .method-icon ion-icon {
    transform: scale(1.2);
  }

  .method-title {
    font-size: var(--fs-4);
    font-weight: var(--fw-600);
    color: var(--white-2);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }

  .method-card:hover .method-title {
    color: var(--orange-yellow-crayola);
    transform: translateY(-2px);
  }

  .method-text {
    font-size: var(--fs-6);
    color: var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }

  .method-card:hover .method-text {
    color: var(--white-2);
  }

  @keyframes slideInFromBottom {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInFromTop {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  
  
  
  /*-----------------------------------*\
    #RESPONSIVE
  \*-----------------------------------*/
  
  /**
   * responsive larger than 450px screen
   */
  
  @media (min-width: 450px) {
  
    /**
     * client
     */
  
    .clients-item { min-width: calc(33.33% - 10px); }
  
  
  
    /**
     * #PORTFOLIO, other 
     */
  
    .project-img,
    .other-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: 100px;
    }
  
  
  
    /**
     * #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: center;
      gap: 18px;
      padding: 30px;
    }
  
    .service-icon-box {
      margin-bottom: 0;
      margin-top: 5px;
    }
  
    .service-content-box { text-align: left; }
  
    /* hobbies */
  
    .hobbies-title { margin-bottom: 25px; }
  
    .hobbies-list {
      gap: 30px;
      margin: 0 -30px;
      padding: 30px;
      padding-bottom: 35px;
    }
  
    .content-card {
      padding: 30px;
      padding-top: 25px;
    }
  
    .hobbies-avatar-box {
      transform: translate(30px, -30px);
      border-radius: 20px;
    }
  
    .hobbies-avatar-box img { width: 80px; }
  
    .hobbies-item-title {
      margin-bottom: 10px;
      margin-left: 95px;
    }
  
    .hobbies-text {
      line-clamp: 2;
      -webkit-line-clamp: 2;
    }
  
    /* hobbies modal */
  
    .modal-container { padding: 20px; }
  
    .hobbies-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); }
  
  
    /**
     * #PORTFOLIO, other
     */
  
    .project-img, .other-banner-box { border-radius: 16px; }
  
    .other-posts-list { gap: 30px; }
  
    .other-content { padding: 25px; }
  
    
    
    /**
    * #CONTACT
    */
    
    .mapbox {
      height: 380px;
      border-radius: 18px;
    }
    
    .input-wrapper {
      gap: 30px;
      margin-bottom: 30px;
    }
    
    .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; }
    
  }
  .scroll{
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
  }
  
  .scroll div {
    white-space: nowrap;
    animation: scroll var(--time) linear infinite;
    animation-delay: calc(var(--time)*-1);
  
  }
  
  .scroll div:nth-child(2) {
    animation: scroll2 var(--time) linear infinite;
    animation-delay: calc(var(--time)/-2);
  }
  
  @keyframes scroll {
    0% {
        transform: translateX(100%);
    }
  
    100% {
        transform: translateX(-100%);
    }
  }
  
  @keyframes scroll2 {
    0% {
        transform: translateX(0);
    }
  
    100% {
        transform: translateX(-200%);
    }
  }
  
  .scroll div span {
    display: inline-flex;
    margin: 10px;
    letter-spacing: 0.2em;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.5s;
  }
  
  .scroll div span:hover {
    background: #3fd2f9;
    cursor: pointer;
  }  
  
  
  
  
  
  /**
   * responsive larger than 768px screen
   */
  
  @media (min-width: 768px) {
  
    /**
     * REUSED STYLE
     */
  
    .sidebar, article { width: 700px; }
  
    .has-scrollbar::-webkit-scrollbar-button { width: 100px; }
  
  
  
    /**
     * SIDEBAR
     */
  
    .contacts-list {
      grid-template-columns: 1fr 1fr;
      gap: 30px 15px;
    }
  
  
  
    /**
     * NAVBAR
     */
  
    .navbar-link { --fs-8: 15px; }
  
  
  
    /**
     * ABOUT
     */
  
    /* hobbies modal */
  
    .hobbies-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);
      position: relative;
      padding: 10px 20px;
      border-radius: 25px;
      background: transparent;
    }

    .filter-item button::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--border-gradient-onyx);
      border-radius: inherit;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }

    .filter-item button::after {
      content: '';
      position: absolute;
      inset: 1px;
      background: var(--bg-gradient-jet);
      border-radius: inherit;
      z-index: -1;
    }
  
    .filter-item button:hover { 
      color: var(--light-gray-70);
      transform: translateY(-2px);
    }

    .filter-item button:hover::before {
      opacity: 1;
    }
  
    .filter-item button.active { 
      color: var(--orange-yellow-crayola);
      transform: translateY(-2px);
    }

    .filter-item button.active::before {
      opacity: 1;
    }
  
    /* portfolio and other grid */
  
    .project-list, .other-posts-list { grid-template-columns: 1fr 1fr; }

    /* Portfolio CTA responsive */
    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }

    .cta-btn {
      min-width: 180px;
    }
  
  
/* 
Chatbot
 */
 
/* Chatbot Styles */
.chatbot-submit{
  border: none;
  border-radius: 10px;
  font-size: var(--fs-6);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-1);
}
  
    /**
     * 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: 950px;
      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: 30px;
      padding: 0 20px;
    }
  
    .navbar-link { font-weight: var(--fw-500); }
  
  
  
    /**
     * ABOUT
     */
  
    /* service */
  
    .service-list {
      grid-template-columns: 1fr 1fr;
      gap: 20px 25px;
    }
  
    /* hobbies */
  
    .hobbies-item { min-width: calc(50% - 15px); }
  
    /* clients */
  
    .clients-item { min-width: calc(25% - 38px); }
  
  
  
    /**
     * PORTFOLIO
     */
  
    .project-list { grid-template-columns: repeat(3, 1fr); }
  
  
  
    /**
     * other
     */
  
    .other-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: 15px;
      z-index: auto;
    }
  
    .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;
      max-height: none;
      overflow-y: auto;
    }
  
    .contacts-list { 
      grid-template-columns: 1fr; 
      gap: 12px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
    }

    .contact-info {
      flex: 1;
      min-width: 0;
    }
  
    .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);
    }

    .contact-title {
      display: block !important;
      color: var(--light-gray-70);
      font-size: var(--fs-8);
      text-transform: uppercase;
      margin-bottom: 2px;
      font-weight: var(--fw-400);
    }
  
    .separator:last-of-type {
      margin: 15px 0;
      opacity: 0;
    }
  
    .social-list { justify-content: center; }
  
  
  
    /**
       * RESUME
       */
  
    .timeline-text { max-width: 700px; }

  }

  /* Intermediate screen sizes (tablet/medium screens) */
  @media (min-width: 481px) and (max-width: 1024px) {
    .sidebar {
      position: relative;
      top: auto;
      max-height: none;
      height: auto;
      margin-bottom: 15px;
      padding-top: 15px;
      z-index: auto;
    }

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

    .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;
      max-height: none;
      overflow-y: auto;
    }

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

    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
    }

    .contact-info {
      flex: 1;
      min-width: 0;
    }

    .contact-title {
      display: block !important;
      color: var(--light-gray-70);
      font-size: var(--fs-8);
      text-transform: uppercase;
      margin-bottom: 2px;
      font-weight: var(--fw-400);
    }

    .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; 
    }
  }
