/*-----------------------------------*\
  #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); }


/* navbar */









/*-----------------------------------*\
  #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;
}
Social List Styling
.social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 20px 0;
}

.social-item {
  list-style: none;
  position: relative;
  width: 44px;
  height: 44px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes icons white */
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.social-link:hover .social-icon {
  filter: none; /* Reverts to original colors on hover */
}

/* Tooltip Styling */
.social-tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #000;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.social-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #FFD700;
}

.social-item:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  top: -35px;
}

.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: 75px;
  min-width: 259px;
}


/* Title with golden hover effect */
.title {
  position: relative;
  display: inline-block;
  color: var(--white-2); /* Default color */
  transition: all 0.3s ease;
  cursor: default;
  z-index: 1;
}

.title:hover {
  color: var(--orange-yellow-crayola); /* Golden color */
  text-shadow: 0 0 8px rgba(255, 199, 44, 0.5);
}

/* Enhanced sparkle animation on hover */
.title:hover ~ .sparkle {
  opacity: 1;
}

.sparkle {
  position: absolute;
  background-color: var(--orange-yellow-crayola);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 4px var(--orange-yellow-crayola));
}

/* Sparkle positions and animations */
.s1 {
  width: 6px;
  height: 6px;
  top: -8px;
  left: 20%;
  animation: float 3s ease-in-out infinite;
}

.s2 {
  width: 4px;
  height: 4px;
  top: 50%;
  right: 15%;
  animation: float 2.5s ease-in-out infinite reverse;
}

.s3 {
  width: 5px;
  height: 5px;
  bottom: -10px;
  left: 45%;
  animation: float 3.5s ease-in-out infinite 0.5s;
}

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

/* Optional: Add a subtle golden underline on hover */
.title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-yellow-crayola);
  transition: width 0.3s ease;
}

.title:hover::after {
  width: 100%;
}



/* figure */

/* Avatar Container - maintains original positioning */
.avatar-box {
  position: relative;
  width: 120px; /* Match image width */
  height: 120px; /* Match image height */
  display: inline-block; /* Preserves original flow */
}

/* Original Image - now with enhancements */
.avatar-img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 2px solid rgba(241, 247, 62, 0.1);
  transition: all 0.9s ease;
  filter: grayscale(10%);
}

/* Dual Glow Effect */
.avatar-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.gold-glow {
  background: radial-gradient(circle at 30% 30%, 
              rgba(255,215,0,0.8) 0%, 
              transparent 70%);
  box-shadow: 0 0 25px rgba(255,215,0,0.4);
}

.silver-glow {
  background: radial-gradient(circle at 70% 70%, 
              rgba(192,192,192,0.7) 0%, 
              transparent 70%);
  box-shadow: 0 0 25px rgba(192,192,192,0.4);
}

/* Sparkle Particles */
.avatar-sparkle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffd700, #ffffff);
  z-index: 10;
  opacity: 10;
  pointer-events: none;
  filter: drop-shadow(0 0 2px rgba(255,215,0,0.8));
}

.sparkle-1 {
  width: 50px;
  height: 10px;
  top: -5%;
  left: 80%;
  animation: sparkle-float 1s infinite;
}

.sparkle-2 {
  width: 120px;
  height: 4px;
  top: 25%;
  left: 660%;
  animation: sparkle-float 2s infinite 0.5s;
}

.sparkle-3 {
  width: 50px;
  height: 10px;
  top: 115%;
  left: -10%;
  animation: sparkle-float 1s infinite 1s;
}

/* Hover Effects */
.avatar-box:hover .avatar-img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1.1);
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.avatar-box:hover .gold-glow {
  opacity: 0.7;
  animation: gold-pulse 2s infinite alternate;
}

.avatar-box:hover .silver-glow {
  opacity: 0.5;
  animation: silver-pulse 2.5s infinite alternate 0.3s;
}

.avatar-box:hover .avatar-sparkle {
  opacity: 0.9;
}

/* Animations */
@keyframes gold-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes silver-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.05); opacity: 0.6; }
}

@keyframes sparkle-float {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
    opacity: 0;
  }
  50% { 
    transform: translateY(-15px) rotate(180deg); 
    opacity: 0.9;
  }
}
.info-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* or 'flex-start' for left alignment */
  position: relative; /* for sparkle positioning */
}

.name {
  margin-bottom: 5px; /* Space between name and title */
  /* Keep all your existing name styles */
}

.title {
  margin-top: 0; /* Remove default margin */
  /* Keep all your existing title styles */
}

.sparkle {
  position: absolute;
  /* Keep all your existing sparkle styles */
}







/* name */
.name {
  position: relative;
  display: inline-block; /* Maintains original layout */
  color: var(--white-2, #ffffff); /* Default color */
  transition: all 0.4s ease;
  z-index: 1;
  /* Preserve original text properties */
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: inherit;
  padding: inherit;
}

/* Gold/Silver Gradient Text Effect */
.name:hover {
  background: linear-gradient(
    135deg,
    var(--silver, #c0c0c0) 25%,
    #ffffff 50%,
    var(--orange-yellow-crayola, #ffb300) 75%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: metallic-shine 3s linear infinite;
}

/* Subtle Sparkle Effects */
.name::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
            transparent, 
            var(--silver, #c0c0c0), 
            var(--orange-yellow-crayola, #ffb300), 
            transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
            transparent, 
            var(--orange-yellow-crayola, #ffb300), 
            var(--silver, #c0c0c0), 
            transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.name:hover::before,
.name:hover::after {
  opacity: 1;
}

/* Floating Particles */
.name:hover {
  position: relative;
}

.name:hover .metallic-particle {
  position: absolute;
  display: block;
  background: linear-gradient(var(--silver), var(--orange-yellow-crayola));
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

@keyframes metallic-shine {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

/* Add these particles to your HTML */
<h1 class="name" title="Monu Yaduwanshi">
  Monu Yaduwanshi
  <span class="metallic-particle p1"></span>
  <span class="metallic-particle p2"></span>
  <span class="metallic-particle p3"></span>
</h1>

/* Particle CSS */
.metallic-particle {
  display: none;
}

.p1 {
  width: 4px;
  height: 4px;
  top: -8px;
  left: 15%;
  animation: float 3s ease-in-out infinite;
}

.p2 {
  width: 3px;
  height: 3px;
  top: 50%;
  right: 10%;
  animation: float 3.5s ease-in-out infinite reverse;
}

.p3 {
  width: 5px;
  height: 5px;
  bottom: -10px;
  left: 40%;
  animation: float 4s ease-in-out infinite 0.5s;
}

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



/* contact items */

/* Contact List Styles */
.contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Hover effect on entire contact item */
.contact-item:hover {
  background: rgba(255, 215, 0, 0.05);
}

/* Icon Box Styles */
.icon-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-container {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange-yellow-crayola, #ffb300);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 215, 0, 0.05);
  transition: all 0.3s ease;
  z-index: 2;
}

.custom-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

/* Hover Effects on Icons */
.metallic-icon:hover .icon-container {
  border-color: var(--silver, #c0c0c0);
  background: rgba(192, 192, 192, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.metallic-icon:hover .custom-icon {
  filter: brightness(1) invert(0) drop-shadow(0 0 2px rgba(255, 215, 0, 0.8));
}

/* Gold/Silver Lines Animation */
.contact-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.top-line {
  top: -6px;
  background: linear-gradient(90deg, 
              transparent, 
              var(--orange-yellow-crayola, #ffb300),
              transparent);
}

.bottom-line {
  bottom: -6px;
  background: linear-gradient(90deg, 
              transparent, 
              var(--silver, #c0c0c0),
              transparent);
}

.contact-item:hover .top-line,
.contact-item:hover .bottom-line {
  width: 100%;
  left: 0;
  transform: translateX(0);
}

/* Glow Effect */
.icon-glow {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 10px;
  background: conic-gradient(
    from 45deg,
    rgba(255,215,0,0.3) 0deg,
    rgba(192,192,192,0.2) 90deg,
    rgba(255,215,0,0.3) 180deg,
    rgba(192,192,192,0.1) 270deg,
    rgba(255,215,0,0.3) 360deg
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metallic-icon:hover .icon-glow {
  opacity: 1;
  animation: rotate-glow 6s linear infinite;
}

@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Contact Info Styles with Hover Effects */
.contact-info {
  flex: 1;
  transition: all 0.3s ease;
}

.contact-title {
  margin: 0;
  font-size: 14px;
  color: var(--light-gray, #aaa);
  transition: all 0.3s ease;
}

.contact-link, time, address {
  display: block;
  color: var(--white, #fff);
  text-decoration: none;
  margin-top: 4px;
  transition: all 0.3s ease;
}

/* Hover Effects on Text */
.contact-item:hover .contact-title {
  color: var(--orange-yellow-crayola, #ffb300);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.contact-item:hover .contact-link,
.contact-item:hover time,
.contact-item:hover address {
  color: var(--silver, #c0c0c0);
  text-shadow: 0 0 5px rgba(192, 192, 192, 0.3);
  transform: translateX(5px);
}

/* CSS Variables */
:root {
  --orange-yellow-crayola: #ffb300;
  --silver: #c0c0c0;
  --white: #ffffff;
  --light-gray: #aaaaaa;
}















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






.sidebar {
  margin-bottom: 15px;
  max-height: 112px;
  overflow: hidden;
  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(--bg-gradient-onyx);
  border-radius: 20px;
}

.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 {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 0 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: 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: 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);
}

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



/**
 * #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;
}


/**
 * #testimonials 
 */
 .testimonial-role {
  font-size: 0.8em;
  color: #777;
  margin-top: 8px;
  font-style: italic;
}
.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 
 */
 /* Domain Tooltip Styling */
.domain-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd700;
  color: rgb(25, 24, 24);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: max-content;
  text-align: center;
}

.domain-name {
  font-weight: bold;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 3px;
  margin-bottom: 3px;
}

.related-field {
  font-size: 0.7rem;
  font-style: italic;
}

.clients-item:hover .domain-tooltip {
  opacity: 1;
}

.clients { margin-bottom: 15px; }

.clients-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  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 img {
  width: 100%;
  filter: grayscale(100%) brightness(0.9);
  transition: var(--transition-1);
  box-shadow: 0 0 0 rgba(255, 215, 0, 0); /* Initial transparent shadow */
}

.clients-item:hover img { 
  filter: grayscale(0) brightness(1.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); /* Golden glow */
  transform: scale(1.05); /* Optional slight zoom */
}
/* .clients-item {
  min-width: 50%;
  scroll-snap-align: start;
}

.clients-item img {
  width: 100%;
  filter: grayscale(100);
  transition: var(--transition-1);
} */

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





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

/* ===== Global Styles ===== */
/* Title Container */
.title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* Download Button Styles */
.download-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--orange-yellow-crayola), #ffcc00);
  color: var(--smoky-black);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 200, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* Custom Icon Container */
.custom-icon-container {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-download-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(0);
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.icon-hover-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: 1;
}

/* Button Hover Effects */
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 200, 0, 0.4);
  background: linear-gradient(135deg, #ffcc00, var(--orange-yellow-crayola));
}

.download-btn:hover .custom-download-icon {
  filter: brightness(0) invert(1);
  animation: iconBounce 0.6s ease;
}

.download-btn:hover .icon-hover-effect {
  transform: scale(1.8);
  opacity: 0;
}

/* Button Shine Effect */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.download-btn:hover .btn-shine {
  left: 150%;
}

/* Button Text */
.btn-text {
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* 3D Title Effect */
.h2.article-title {
  position: relative;
  font-size: 2rem;
  color: var(--white);
  text-shadow: 
    2px 2px 0 var(--orange-yellow-crayola),
    4px 4px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.h2.article-title:hover {
  transform: translateY(-2px);
  text-shadow: 
    3px 3px 0 var(--orange-yellow-crayola),
    6px 6px 0 rgba(0, 0, 0, 0.2);
}

/* CSS Variables */
:root {
  --orange-yellow-crayola: #ffb300;
  --smoky-black: #121212;
  --white: #ffffff;
}



.timeline,
.skills-section {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.timeline:hover,
.skills-section:hover {
  background: rgba(255, 255, 255, 0.05);
}

.title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

/* ===== Icon Styles ===== */
.icon-box {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-icon-wrapper {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.custom-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(0.8);
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

/* Hover Effects */
.icon-hover-circle {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 1;
}

.icon-hover-shine {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, 
              rgba(255,255,255,0.8) 0%, 
              rgba(255,255,255,0) 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

/* Hover States */
.title-wrapper:hover .h3 {
  color: var(--orange-yellow-crayola);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.title-wrapper:hover .custom-icon {
  filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(255, 215, 0, 0.7));
  transform: scale(1.1);
}

.title-wrapper:hover .icon-hover-circle {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.15);
}

.title-wrapper:hover .icon-hover-shine {
  opacity: 0.6;
  animation: pulse 1.5s infinite alternate;
}

/* ===== Timeline Styles ===== */
.timeline-list {
  list-style: none;
  padding: 0;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, 
              transparent, 
              var(--orange-yellow-crayola), 
              transparent);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--orange-yellow-crayola);
  transition: all 0.3s ease;
}

.timeline-custom-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(0.8);
  transition: all 0.3s ease;
  z-index: 2;
}

.timeline-icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, 
              rgba(255,215,0,0.3) 0%, 
              transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-content {
  position: relative;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.timeline-item-title {
  margin: 0 0 5px 0;
  color: var(--white);
  transition: all 0.3s ease;
}

.timeline-period {
  display: inline-block;
  font-size: 14px;
  color: var(--orange-yellow-crayola);
  margin-bottom: 10px;
  padding: 3px 8px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.timeline-text {
  margin: 0;
  color: var(--light-gray);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.timeline-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, 
              var(--orange-yellow-crayola), 
              var(--silver));
  transition: width 0.4s ease;
}

/* Certificate Header */
.certificate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.download-certificate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.download-custom-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(0.8);
  transition: all 0.3s ease;
}

/* Hover Effects */
.timeline-item:hover {
  transform: translateX(5px);
}

.timeline-item:hover .timeline-icon {
  background: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.timeline-item:hover .timeline-custom-icon {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

.timeline-item:hover .timeline-icon-glow {
  opacity: 1;
}

.timeline-item:hover .timeline-content {
  background: rgba(255, 255, 255, 0.03);
}

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

.timeline-item:hover .timeline-period {
  background: rgba(255, 215, 0, 0.2);
}

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

.timeline-item:hover .timeline-hover-line {
  width: 100%;
}

.download-certificate:hover {
  background: rgba(255, 215, 0, 0.2);
}

.download-certificate:hover .download-custom-icon {
  filter: brightness(0) invert(1);
  transform: scale(1.2);
}

/* ===== Skills Section ===== */
.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skills-item {
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.skills-item:last-child {
  margin-bottom: 0;
}

.skills-item .title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

.skill-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.skill-custom-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(0.8);
  transition: all 0.3s ease;
  z-index: 2;
}

.h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--white);
  flex-grow: 1;
  transition: all 0.3s ease;
}

data {
  color: var(--orange-yellow-crayola);
  font-weight: 600;
}

.skill-progress-bg {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.skill-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, 
              var(--orange-yellow-crayola), 
              #ffcc00);
  border-radius: 3px;
  transition: width 1s ease;
}

/* Skills Hover Effects */
.skills-item:hover {
  transform: translateX(5px);
}

.skills-item:hover .h5 {
  color: var(--orange-yellow-crayola);
}

.skills-item:hover .skill-custom-icon {
  filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(255, 215, 0, 0.7));
  transform: scale(1.1);
}

.skills-item:hover .skill-progress-fill {
  background: linear-gradient(90deg, 
              #ffcc00, 
              var(--orange-yellow-crayola));
}

/* ===== Animations ===== */
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.3; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ===== CSS Variables ===== */
:root {
  --orange-yellow-crayola: #ffb300;
  --silver: #c0c0c0;
  --white: #ffffff;
  --light-gray: #aaaaaa;
}

/* Resume Header Container */
.resume-header {
  position: relative;
  padding: 3rem 0;
  text-align: left;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: left;
}

.title-container {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

/* 3D Text Effect with Gradient */
#resume-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 
    4px 4px 0 rgba(0,0,0,0.1),
    8px 8px 0 rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
  transform-style: preserve-3d;
  animation: float 4s ease-in-out infinite;
}

/* Enhanced 3D Button */
.button-wrapper {
  perspective: 500px;
  display: inline-block;
}

.download-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

.btn-content {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  font-weight: 600;
  transform: translateZ(20px);
  transition: all 0.3s;
  z-index: 2;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  border-radius: 50px;
  transform: translateZ(-5px);
  transition: all 0.3s;
  opacity: 0.7;
}

.download-btn:hover {
  transform: translateY(-5px) rotateX(10deg);
  filter: drop-shadow(0 8px 25px rgba(255, 215, 0, 0.5));
}

.download-btn:hover .btn-content {
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.download-btn:hover .btn-shine {
  transform: translateZ(-8px);
  opacity: 1;
}

/* Improved Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid #FFD700;
  border-radius: 13px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #FFD700;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2.2s infinite;
}

.arrows {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

.arrow:nth-child(1) { animation-delay: 0.1s; opacity: 0.8; }
.arrow:nth-child(2) { animation-delay: 0.2s; opacity: 0.6; }
.arrow:nth-child(3) { animation-delay: 0.3s; opacity: 0.4; }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-12px) rotateY(5deg); }
}

@keyframes scroll {
  0% { top: 8px; opacity: 1; }
  90% { top: 26px; opacity: 0; }
  100% { top: 8px; opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-8px); }
}

/* Particles Canvas */
.particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}
.article-title { margin-bottom: 30px; }
/* Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #FFD700;
  color: #000;
  border-radius: 30px;
  font-weight: 500;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Certification Icons */
.timeline .icon-box {
  background: #FFD700;
}

/* Certifications Section */
.certificate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.download-certificate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  transition: all 0.3s ease;
}

.download-certificate:hover {
  background: #FFD700;
  color: #000;
  transform: scale(1.1);
}

.timeline-text {
  margin-top: 5px;
  font-size: 0.9rem;
  color: var(--text-color-light);
}

/**
 * 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;
}


/**
 * skills 
 */

/* Skills Section */
.skills-section {
  padding: 60px 0;
  position: relative;
}

.skills-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--text-color);
  position: relative;
}

.skills-title span {
  color: var(--accent-color);
  position: relative;
}

.skills-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.skills-section:hover .skills-title span::after {
  transform: scaleX(1);
}

.skills-list {
  background: var(--bg-color-secondary);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.skills-item {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.skills-item:last-child {
  margin-bottom: 0;
}

.title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
}

.skill-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.skill-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.skills-item:hover .skill-icon {
  background: rgba(255, 215, 0, 0.2);
  transform: rotate(10deg) scale(1.1);
}

.skills-item:hover .skill-icon img {
  filter: grayscale(0%) brightness(1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.title-wrapper h5 {
  font-size: 1.1rem;
  color: var(--text-color);
  flex-grow: 1;
  margin: 0;
  transition: color 0.3s ease;
}

.skills-item:hover .title-wrapper h5 {
  color: var(--accent-color);
}

.title-wrapper data {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.4s ease;
}

.skills-item:hover .title-wrapper data {
  opacity: 1;
  transform: translateX(0);
}

.skill-progress-bg {
  height: 8px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.skill-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-color), #FFC600);
  width: 0;
  position: relative;
  transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.progress-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
              transparent, 
              rgba(255,255,255,0.4), 
              transparent);
  animation: wave 2s infinite linear;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skills-item:hover .progress-wave {
  opacity: 1;
}

.skill-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.skills-item:hover .skill-details {
  max-height: 100px;
  margin-top: 10px;
}

.skill-details p {
  font-size: 0.9rem;
  color: var(--text-color-secondary);
  margin: 0;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.2s;
}

.skills-item:hover .skill-details p {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Staggered animations */
.skills-item:nth-child(1) { animation-delay: 0.1s; }
.skills-item:nth-child(2) { animation-delay: 0.2s; }
.skills-item:nth-child(3) { animation-delay: 0.3s; }
.skills-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
  .skills-list {
    padding: 20px;
  }
  
  .title-wrapper h5 {
    font-size: 1rem;
  }
  
  .skill-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }
}

@media (max-width: 480px) {
  .skills-title {
    font-size: 1.8rem;
  }
  
  .skills-item {
    margin-bottom: 25px;
  }
}

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

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

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

.skill-progress-fill {
  background: var(--text-gradient-yellow);
  height: 100%;
  border-radius: inherit;
}





/*-----------------------------------*\
  #PORTFOLIO
\*-----------------------------------*/









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

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

.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: var(--transition-1);
}

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

.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: 1;
  transition: var(--transition-1);
}

.project-item > a:hover .project-item-icon-box {
  --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: var(--transition-1);
}

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





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/
/* For the h3 category title */
.category-title {
  color: #FFD700; /* Standard gold color */
  /* Optional gradient for more visual interest */
  background: linear-gradient(to right, #FFD700, #FFC600);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* For h4 elements (like "Spring") */
h4 {
  color: #FFD700;
  /* Optional additional styling */
  position: relative;
  display: inline-block;
}

/* Optional underline effect for h4 */
h4::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #FFD700, transparent);
}

/* Alternative gold shades you could use:
   #FFC000 (slightly darker gold)
   #FFDF00 (brighter gold)
   #FDBD01 (warm gold)
*/
h4 {
  /* Metallic Silver Text Effect */
  color: #C0C0C0;
  text-shadow: 
    0 0 5px rgba(192, 192, 192, 0.8),
    0 0 10px rgba(255, 255, 255, 0.5);
  background: linear-gradient(to right, #E6E6E6, #C0C0C0, #E6E6E6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Underline Animation Setup */
  position: relative;
  display: inline-block;
  padding-bottom: 3px; /* Space for underline */
}

h4::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  /* Matching metallic silver underline */
  background: linear-gradient(90deg, 
             transparent, 
             rgba(239, 222, 40, 0.8), 
             transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

h4:hover::after {
  transform: scaleX(1);
}
.blog-posts { margin-bottom: 10px; }

.blog-posts-list {
  display: grid;
  grid-template-columns: 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-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;
}





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

.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: 10px; }

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

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-input {
  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;
}

.form-input::placeholder { font-weight: var(--fw-500); }

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

textarea.form-input {
  min-height: 100px;
  height: 120px;
  max-height: 200px;
  resize: vertical;
  margin-bottom: 25px;
}

textarea.form-input::-webkit-resizer { display: none; }

.form-input:focus:invalid { border-color: var(--bittersweet-shimmer); }

.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 ion-icon { font-size: 16px; }

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





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

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

@media (min-width: 450px) {

  /**
   * client
   */

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



  /**
   * #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: 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: 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: 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; }

}





/**
 * 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
   */

  /* 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: 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;
  }

  /* testimonials */

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

  /* clients */

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



  /**
   * PORTFOLIO
   */
/* Portfolio Section */
.portfolio {
  padding: 60px 0;
}

/* Filter Buttons */
.filter-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-item button {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #FFD700;
  background: transparent;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-item button:hover {
  background: rgba(255, 215, 0, 0.1);
}

.filter-item button.active {
  background: #FFD700;
  color: #000;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Mobile Filter Dropdown */
.filter-select-box {
  position: relative;
  display: none;
  margin-bottom: 30px;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.filter-select {
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--bg-color-secondary);
  border: 1px solid #FFD700;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.select-icon ion-icon {
  transition: transform 0.3s ease;
}

.filter-select.active .select-icon ion-icon {
  transform: rotate(180deg);
}

.select-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-color);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 10;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.select-list.active {
  max-height: 400px;
  padding: 10px 0;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.select-item button {
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  background: transparent;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  transition: background 0.2s ease;
}

.select-item button:hover {
  background: rgba(255, 215, 0, 0.1);
}

/* Projects Grid */
.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.project-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.project-item.active {
  display: block;
  opacity: 1;
}

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

.project-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.project-item-icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 215, 0, 0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.project-item-icon-box ion-icon {
  color: #000;
  font-size: 28px;
}

.project-hover-content {
  position: center;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: rgb(221, 227, 33);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 1;
}

.project-title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
  padding: 0 15px;
}

.project-category {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 15px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 30px;
  color: #FFD700;
  font-size: 14px;
  font-weight: 500;
}

/* Hover Effects */
.project-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

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

.project-item:hover .project-hover-content {
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .project-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .filter-list {
    display: none;
  }
  
  .filter-select-box {
    display: block;
  }
  
  .project-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .portfolio {
    padding: 40px 0;
  }
  
  .project-title {
    font-size: 16px;
  }
  
  .project-category {
    font-size: 13px;
  }
}
  .project-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * BLOG
   */

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

}

/* Skills Section */
.skills-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: var(--text-color);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--accent-color, #FFD700);
  margin: 20px auto 0;
  border-radius: 2px;
  animation: expandLine 1.2s ease-out forwards;
}

.skills-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.skill-category {
  margin-bottom: 50px;
}

.category-title {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-bottom: 25px;
  padding-left: 15px;
  position: relative;
}

.category-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 5px;
  background: var(--accent-color, #FFD700);
  border-radius: 3px;
}

.skill-card {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-color-secondary);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.skill-card:hover {
  transform: translateY(-12px) rotateX(8deg) scale(1.03);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.25);
  border-color: rgba(255, 215, 0, 0.3);
}

.skill-icon-box {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-gradient-dark), var(--bg-gradient-light));
}

.skill-icon-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skill-card:hover .skill-icon-box img {
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
}

.skill-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255, 215, 0, 0.15);
  overflow: hidden;
}

.skill-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), #FFC600);
  width: 0;
  transition: width 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.skill-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
              transparent, 
              rgba(255,255,255,0.4), 
              transparent);
  animation: shine 2s infinite;
}

.skill-content {
  padding: 25px;
}

.skill-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.skill-card:hover .skill-title {
  color: var(--accent-color);
}

.skill-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color-secondary);
  margin: 0;
  opacity: 0.9;
}

/* Platform Cards (for IDEs) */
.platform-card {
  background: var(--bg-color-secondary);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.platform-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(30%) drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
  transition: all 0.4s ease;
}

.platform-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.platform-card:hover .platform-icon {
  transform: rotate(10deg);
}

.platform-card:hover .platform-icon img {
  filter: grayscale(0%) drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.platform-card h4 {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-top: 15px;
  transition: color 0.3s ease;
}

.platform-card:hover h4 {
  color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes expandLine {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

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

.skill-card, .platform-card {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Staggered animations */
.skill-card:nth-child(1) { animation-delay: 0.1s; }
.skill-card:nth-child(2) { animation-delay: 0.2s; }
.skill-card:nth-child(3) { animation-delay: 0.3s; }
.skill-card:nth-child(4) { animation-delay: 0.4s; }
.skill-card:nth-child(5) { animation-delay: 0.5s; }
.skill-card:nth-child(6) { animation-delay: 0.6s; }
.skill-card:nth-child(7) { animation-delay: 0.7s; }
.skill-card:nth-child(8) { animation-delay: 0.8s; }

.platform-card:nth-child(1) { animation-delay: 0.1s; }
.platform-card:nth-child(2) { animation-delay: 0.2s; }
.platform-card:nth-child(3) { animation-delay: 0.3s; }
.platform-card:nth-child(4) { animation-delay: 0.4s; }
.platform-card:nth-child(5) { animation-delay: 0.5s; }
.platform-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1200px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .category-title {
    font-size: 1.6rem;
  }
  
  .skill-icon-box, .platform-icon {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .skills-section {
    padding: 60px 0;
  }
  
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .skill-content, .platform-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .category-title {
    font-size: 1.4rem;
  }
  
  .skill-title {
    font-size: 1.2rem;
  }
  
  .skill-text {
    font-size: 0.9rem;
  }
}



/**
 * 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%; }





/* submit button */









  /**
   * 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; }

}

/* Contact */
/* Form Button Styles */
.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--orange-yellow-crayola);
  color: var(--smoky-black);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Custom Send Icon */
.send-custom-icon {
  width: 16px; /* Smaller icon size */
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(0); /* Keeps original icon color */
}

/* Disabled State */
.form-btn:disabled {
  background-color: var(--light-gray);
  cursor: not-allowed;
}

/* CSS Variables */
:root {
  --orange-yellow-crayola: #ffb300;
  --smoky-black: #121212;
  --light-gray: #cccccc;
}



  /* Loading spinner */
  .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--orange-yellow-crayola);
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* Toast notifications */
  .toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 14px;
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    z-index: 1000;
    opacity: 0;
    animation: slideIn 0.3s ease-out forwards;
    box-shadow: var(--shadow-3);
    max-width: 90%;
    text-align: center;
  }
  
  .toast-success {
    background: var(--orange-yellow-crayola);
    color: var(--smoky-black);
  }
  
  .toast-error {
    background: var(--bittersweet-shimmer);
    color: var(--white-2);
  }
  
  .toast.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
  }
  
  @keyframes slideIn {
    from { 
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
    }
    to { 
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
  
  @keyframes fadeOut {
    to { opacity: 0; }
  }
  
  /* Form input validation */
  .form-input:invalid {
    border-color: var(--bittersweet-shimmer) !important;
  }