* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  scroll-behavior: smooth;
  text-decoration: none !important;
}

body {
  color: #fff;
  background: #000;
  list-style: none;
  text-decoration: none;
}
 

.cursor {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  backdrop-filter: invert(1) grayscale(1);
  -webkit-backdrop-filter: invert(1) grayscale(1);
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}


.hover-target {
  width: 200px;
  height: 100px;
  background: #444;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px auto;
  border-radius: 12px;
  transition: background 0.3s;
}

.hover-target:hover {
  background: #666;
}



/* .cursor-2 {
  display: inline-block;
  width: 2px;
  background-color: #ffffff;
  margin-left: 10px;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

#typewriter {
  display: inline;
  font-weight: bold;
} */


/* .expand {
  background: transparent;
  animation: moveCursor2 0.5s forwards;
  border: 1px solid #7c3aed;
}

@keyframes moveCursor1 {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.8);
  }
}

@keyframes moveCursor2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(2.5);
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
} */

/* loading */

#loader.spinner {
  position: absolute;
  width: 10px;
  height: 10px;
  /* margin: 100px auto; */
  top: 50%;
  left: 50%;
}

.spinner div {
  position: absolute;
  width: 50%;
  height: 150%;
  background: #FFF;
  transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
  animation: spinner-fzua35 1s calc(var(--delay) * 1s) infinite ease;
}


.spinner div:nth-child(1) {
  --delay: 0.1;
  --rotation: 36;
  --translation: 150;
}

.spinner div:nth-child(2) {
  --delay: 0.2;
  --rotation: 72;
  --translation: 150;
}

.spinner div:nth-child(3) {
  --delay: 0.3;
  --rotation: 108;
  --translation: 150;
}

.spinner div:nth-child(4) {
  --delay: 0.4;
  --rotation: 144;
  --translation: 150;
}

.spinner div:nth-child(5) {
  --delay: 0.5;
  --rotation: 180;
  --translation: 150;
}

.spinner div:nth-child(6) {
  --delay: 0.6;
  --rotation: 216;
  --translation: 150;
}

.spinner div:nth-child(7) {
  --delay: 0.7;
  --rotation: 252;
  --translation: 150;
}

.spinner div:nth-child(8) {
  --delay: 0.8;
  --rotation: 288;
  --translation: 150;
}

.spinner div:nth-child(9) {
  --delay: 0.9;
  --rotation: 324;
  --translation: 150;
}

.spinner div:nth-child(10) {
  --delay: 1;
  --rotation: 360;
  --translation: 150;
}

@keyframes spinner-fzua35 {

  0%,
  10%,
  20%,
  30%,
  50%,
  60%,
  70%,
  80%,
  90%,
  100% {
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
  }

  50% {
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1.5%));
  }
}

/* nav */
.navbar {
  justify-content: space-between;
  align-items: center;
  background-color: #0e1116;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 30px;
  color: white;

}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0px;
  margin: 0px;
  justify-content: center;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  position: relative;
}

.nav-links li a.active {
  color: #7c3aed;
  /* border-bottom: 1px solid #7c3aed; */
}

.nav-links li a:hover{
  color: #fff ;
}

.right-icons {
  align-items: center;
  gap: 15px;
  justify-self: end;
}

.download-btn {
  color: #fff;
  background-color: #7c3aed;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}

.hamburger i {
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* banner */
.banner-section-background {
  background-image: url(https://res.cloudinary.com/dncyjrbtx/image/upload/v1747334267/app/background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100%;
  min-height: 100%;
  align-items: center;
  justify-content: center;
}

/* .social-icons img {
  width: 24px;
  height: 24px;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
} */

.social-icons {
  gap: 10px;
}

.social-icons a i {
  color: #fff;
  width: 48px;
  height: 48px;
  text-align: center;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  border-image: initial;
}

.social-icons a:hover i {
  color: #fff;
  text-shadow: 0 0 5px #7c3aed, 0 0 10px #7c3aed, 0 0 20px #7c3aed, 0 0 40px #7c3aed;
  transition: all 0.3s ease-in-out;
}

.container2 {
  /* margin: 0 auto; */
  /* padding: 0 12px; */
  /* border-right: 1px solid #ffffff38; */
}

.intro {
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.emoje-intro {
  transform-origin: 70% 70%;
  display: inline-block;
  animation-name: wave-animation;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.hero h1 {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}


.glitch a{
  color: #7c3aed !important;
}
.glitch{
  position: relative;
  animation: flicker 2s infinite;
  color: #7c3aed;
}

.glitch::before,
.glitch::after {
  content: attr(data-text); /* use data-text */
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  pointer-events: none; /* allow clicks on <a> */
}

.glitch::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
  color: #fff;
}

.glitch::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
  color: #ff00ff;
}

/* keyframes same as before */
@keyframes glitchTop {
  0% { clip: rect(0, 9999px, 0, 0); }
  25% { clip: rect(10px, 9999px, 50px, 0); transform: translate(-5px, -5px); }
  50% { clip: rect(85px, 9999px, 140px, 0); transform: translate(5px, 0); }
  75% { clip: rect(55px, 9999px, 90px, 0); transform: translate(-3px, 5px); }
  100% { clip: rect(0, 9999px, 0, 0); }
}

@keyframes glitchBottom {
  0% { clip: rect(0, 9999px, 0, 0); }
  25% { clip: rect(130px, 9999px, 170px, 0); transform: translate(5px, 5px); }
  50% { clip: rect(60px, 9999px, 100px, 0); transform: translate(-5px, 0); }
  75% { clip: rect(20px, 9999px, 40px, 0); transform: translate(3px, -5px); }
  100% { clip: rect(0, 9999px, 0, 0); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}


.highlight {
  background: linear-gradient(90deg,
      #ff7d61,
      #ffdb59,
      #61ffca,
      #61a0ff,
      #ff61c9);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hue 8s linear infinite;
}

.hero .highlight {
  background: linear-gradient(90deg,
      #ff7d61,
      #ffdb59,
      #61ffca,
      #61a0ff,
      #ff61c9);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hue 8s linear infinite;
}

@keyframes hue {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero .profile-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* width: 550px; */
}

.image-3d {
  width: 550px;
  height: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* about section */
.about-header {
  font-size: 40px;
  font-weight: 600;
  padding: 10px;
}

.intro-section {
  padding: 60px 0px;
}

@media screen and (max-width: 750px) {
  .intro-section {
    padding: 30px 0px;
  }
}

.summary {
  border-color: #7c3aed !important;
}

.about-me .self-taught {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  padding: 20px 0 30px 0;
  text-align: center;
}

.about-me .text-highlight {
  color: #7c3aed;
  font-weight: bold;
}

.about-me .btn-style {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 2px;
}

.btn-style:hover {
  color: #7c3aed !important;
}

/* tab */

.tabs-container {
  margin: auto;
  border-radius: 10px;
  /* overflow: auto; */
}

.tab-buttons {
  display: flex;
  overflow: auto;

}

.tab-buttons button {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: #7c3aed;
  gap: 10px;
  margin: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 8px;
}

.tab-buttons button:hover,
.tab-buttons button.active {
  background: #fff;
  color: #7c3aed;
}

.tab-content {
  /* padding: 20px; */
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.tabs-container ul {
  padding: 0;
  list-style: none;
  /* display: flex; */
  align-content: center;
  flex-wrap: wrap;
}

.tab-content li {
  margin: 8px;
  padding: 10px;

}

.category {
  font-weight: bold;
  margin-top: 10px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.skills-grid .skill-card {
  /* flex: 1 1 15%; */
  /* background-color: #1c1e29; */
  border-radius: 12px;
  text-align: center;
  width: 13%;
  margin: 5px;
  align-content: center;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 24px;
  padding: 25px;
  border: 2px solid #fff;
  transition: all 0.3s ease-in;
  background: rgba(133, 133, 133, 0.2);
}

.skills-grid .skill-card:hover{
  border: 2px solid #7c3aed;
}

@media screen and (min-width: 451px) and (max-width:900px) {
  .about-me .self-taught{
    font-size: 28px;
  }

  .skills-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .skills-grid .skill-card {
    width: 30%;
    margin: 10px auto;
  }
}

@media screen and (max-width: 450px) {
  .about-me .self-taught{
    font-size: 22px;
  }
  
  .skills-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .skills-grid .skill-card {
    width: 45%;
    margin: 10px auto;
  }
}

.skill-card i {
  font-size: 50px;
}


.skill-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.skill-card:hover h3 {
  color: #8b5cf6;
}

.skill-card:hover i {
  color: #fff;
  text-shadow: 0 0 5px #7c3aed, 0 0 10px #7c3aed, 0 0 20px #7c3aed, 0 0 40px #7c3aed;
  transition: all 0.3s ease-in-out;
  /* transform: rotateY(360deg); */
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-12px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}


.skill-card i {
  transition: all 0.3s ease-in-out;
}


.skill-percent {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
  text-align: right;
}


.wrapper {
  padding: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
    /* Mask (for Chrome, Safari, Edge) */
      -webkit-mask-image: linear-gradient(var(--mask-direction, to right),
          hsl(0 0% 0% / 0),
          hsl(0 0% 0% / 1) 20%,
          hsl(0 0% 0% / 1) 80%,
          hsl(0 0% 0% / 0));
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
    
      /* Mask (for Firefox) */
      mask-image: linear-gradient(var(--mask-direction, to right),
          hsl(0 0% 0% / 0),
          hsl(0 0% 0% / 1) 20%,
          hsl(0 0% 0% / 1) 80%,
          hsl(0 0% 0% / 0));
      mask-repeat: no-repeat;
      mask-size: 100% 100%;
}

.marquee {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;

}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee__group .tech-icons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.tech-icons .image-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 10px;
  background: #1e1e1e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 200px;
  height: 100px;
}

.image-container img{
    /* width: min-content;
    height: -webkit-fill-available; */
    width: 100px;
    height: 100%;
    /* width: 100%;
    height: 100%; */
}

/* Education */
.section-box {
  min-height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

.Qualification-section {
  padding: 60px 0px;
}

.education-box .text-muted,
.experience-box .text-muted,
.interests-box .text-muted {
  color: #7c3aed !important;
}

.education-box:hover .text-muted,
.experience-box:hover .text-muted,
.interests-box:hover .text-muted {
  color: #FFF !important;
}

.education-box .header-card-h2,
.experience-box .header-card-h2,
.interests-box .header-card-h2 {
  color: #fff !important;
  font-weight: 700;
  font-size: 25px;
}

@media screen and (max-width: 768px) {
  .education-box .header-card-h2,
  .experience-box .header-card-h2,
  .interests-box .header-card-h2 {
    font-size: 20px;
  }
}

.box-small .small{
background: #000;
color: #fff;
padding: 10px;
width: 100px !important;
border-radius: 8px;
}

ul li {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s forwards;
}

ul li:nth-child(1) {
  animation-delay: 0.2s;
}

ul li:nth-child(2) {
  animation-delay: 0.4s;
}

ul li:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* education */
.education-box {
  background-color: #1e1e1e;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: box-shadow 0.3s ease;
}

.education-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(93, 139, 244, 0.25), transparent 60%);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 1;
}

.education-box:hover::before {
  opacity: 1;
}

.experience-box {
  position: relative;
  background-color: #1e1e1e;
  color: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

/* Magnetic glow effect layer */
.experience-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
      #ff6b6b80,
      transparent 60%);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 1;
}

/* Show glow on hover */
.experience-box:hover::before {
  opacity: 1;
}

.experience-box:hover {
  box-shadow:
    0 0 0 2px #ff6b6b80,
    0 0 30px 2px #ff6b6b40;
}

.interests-box {
  position: relative;
  background-color: #1e1e1e;
  color: #FFF;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

/* Magnetic Glow Layer */
.interests-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
      rgba(93, 139, 244, 0.25),
      transparent 60%);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 1;
}

/* On hover, show the glow */
.interests-box:hover::before {
  opacity: 1;
}

/* Optional glow shadow on hover */
.interests-box:hover {
  box-shadow:
    0 0 0 2px rgba(93, 139, 244, 0.5),
    0 0 30px 2px rgba(93, 139, 244, 0.25);
}

/* hover */
.education-box:hover {
  box-shadow: 0 0 0 2px var(--glow-color-1, rgba(93, 139, 244, 0.5)),
    0 0 30px 2px var(--glow-color-1, rgba(93, 139, 244, 0.25));
}

.education-box:nth-child(1) {
  --glow-color-1: rgba(93, 139, 244, 0.5);
}


.experience-box:hover {
  box-shadow: 0 0 0 2px #ff6b6b80, 0 0 30px 2px var(--glow-color-2, rgba(93, 139, 244, 0.25));
}

.experience-box:nth-child(2) {
  --glow-color-2: rgba(255, 107, 107, 0.5);
}

.interests-box:hover {
  box-shadow: 0 0 0 2px #48dbfb80,
    0 0 30px 2px var(--glow-color-3, rgba(93, 139, 244, 0.25));
}

.interests-box:nth-child(3) {
  --glow-color-3: rgba(72, 219, 251, 0.5);
}

/* slider card */
.slick-dots {
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0;

  li {
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;

    &.slick-active {
      button {
        background-color: #7c3aed;
        width: 30px;
        border-radius: 10%;
        height: 6px;
      }
    }

    button {
      font: 0/0 a;
      text-shadow: none;
      color: transparent;
      background-color: #999;
      border: none;
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }

    :hover {
      background-color: #7c3aed;
      border-radius: 50%;
      width: 6px;
      height: 6px;
    }
  }
}

/* Custom Arrow */
.prev,
.next {
  width: 40px;
  height: 40px;
  background: #000;
  color: #FFF;
  font-size: 20px;
  border-radius: 50%;
  border: 1px solid #fff;

  /* temp for visibility */
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev{
  position: absolute;
  top: 50%;
  right: 0px;
}
.next{
  position: absolute;
  top: 50%;
}

.prev:hover {
  color: black;
  background: #fff;
}

.next:hover {
  color: black;
    background: #fff;
}

@media screen and (max-width: 800px) {
  .next, .prev {
    display: none !important;
  }
}

/*  */

.hover14 figure {
  position: relative;
  overflow: hidden;
}

.hover14 figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  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);
}

.hover14 figure:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}


.slider-card .heading-helight {
  color: #7c3aed;
  font-weight: 600;
}

.slider-card {
  cursor: pointer;
}

.slider-section .slider-card {
  margin: 10px;
}

.slider-image {
  overflow: hidden;
}

.slider-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.slider-card:hover img {
  transform: scale(1.1);
  cursor: pointer;
  /* border-radius: 10px 10px 0px 0px; */

}

.slider-section .slider-image img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}


.slider-section .slider-contend {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 0px 0px 10px 10px;
  margin: 0;
  min-height: 100%;
}


.slider-contend .card-para {
  text-align: justify;
  overflow-y: auto;
}

.slider-contend a {
  color: #fff;

}

.slider-contend a:hover {
  color: #7c3aed;
}

.message-box h2 {
  font-size: 20px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

.slider-dots {
  text-align: center;
  margin-top: 10px;
}

.slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.pro-section {
  padding: 60px 0px;
}

/* form */
.contact-section {
  position: relative;
  z-index: 1;
  color: white;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://res.cloudinary.com/dncyjrbtx/image/upload/v1749315346/app/map.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  filter: invert(1);
  z-index: -1;
  backdrop-filter: blur(5px);
}

.bg-from {
  background: rgba(133, 133, 133, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.contact-left {
  color: #fff;
  padding: 40px;
  height: 100%;
}

@media screen and (min-width:200px) and (max-width:800px) {
  .contact-left {
      padding: 10px;
    }
}



#popup-message {  
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 50px;
  right: 20px;
  z-index: 9999;
}

/* === Message Popup === */
#popup-message {
  animation: fadeIn 0.5s ease-in-out;
  background-color: #d4edda;
  color: #155724;
  border-left: 5px solid #28a745;
  border-radius: 5px;
}

.tooltip-message {
  display: none;
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

.footer-note {
  font-size: 14px;
  margin-top: 30px;
  color: #aaa;
}

form span {
  color: red;
}

.contact-left i {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 50%;
}

.contact-left a {
  color: white;
  transition: color 0.3s ease;
}

.contact-left a:hover {
  color: #7c3aed;
  text-decoration: underline;
}



.form-control-input{
      background: #000;
        color: #FFF;
        border: 1px solid #fff !important;
        display: block;
          width: 100%;
          padding: .375rem .75rem;
          border-radius: 8px;
}

input.form-control-input{
  /* border-bottom: 0px 0px 1px 0px solid #fff !important; */
}

.message-from from{
      background: #000;
    padding: 30px 0px 30px 30px;
}

.form-label {
    margin-bottom: .5rem;
    /* position: relative;
    top: 18px;
    left: 10px;
    background: #000;
    padding: 0px 0px 0px 10px; */
}


/* footer */
.footer {
  text-align: center;
  padding: 30px 0 10px;
  background-color: #0e1116;
  color: #ffffff;
  font-size: 0.9rem;
  border-top: 1px solid #2c2f34;
}

.footer h5 {
  color: #ffffff;
}

.footer a {
  color: #bbbbbb;
}

.footer a:hover {
  color: #7c3aed;
}

.footer p {
  color: #bbbbbb;
}

.footer .highlight {
  color: #7c3aed;
  font-weight: bold;
}

/* footer animation loading */
.progress-wrap {
  position: fixed;
  bottom: 50px;
  right: 50px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 0 0 2px #7c3aed inset;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.progress-circle {
  transform: rotate(-90deg);
}

.progress-path {
  stroke-dasharray: 307;
  /* ~ 2πr (for r ~ 49) */
  stroke-dashoffset: 307;
  transition: stroke-dashoffset 0.3s linear;
}




.fa-nextjs {
  background: url('https://cdn.jsdelivr.net/gh/devicons/devicon/icons/nextjs/nextjs-original-wordmark.svg') no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 40px;
  height: 40px;
  filter: invert(1);
  transition: all 0.3s ease-in-out;
}

.skill-section {
  padding: 30px 0px;
}

.skill-card:hover .fa-nextjs {
  filter: invert(1) drop-shadow(0 0 5px #7c3aed) drop-shadow(0 0 10px #7c3aed) drop-shadow(0 0 20px #7c3aed) drop-shadow(0 0 40px #7c3aed);

}

.project-card {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background-color: white;
  margin: 10px;
}

.loading-card .loading-line {
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 10px;
}

.loading-line.title {
  width: 60%;
  height: 24px;
}

.loading-line.subtitle {
  width: 40%;
  height: 16px;
}

.loading-line.dates {
  width: 30%;
  height: 14px;
}

.loading-line.desc {
  width: 90%;
  height: 12px;
}

.loading-line.desc.short {
  width: 70%;
}

.loading-badges {
  margin-top: 10px;
}

.loading-badge {
  display: inline-block;
  width: 80px;
  height: 24px;
  margin-right: 8px;
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}


/* moble code */
@media screen and (max-width:786px) {
  .intro-section {
    padding: 30px 0px;
  }

  .skill-section {
    padding: 30px 0px;
  }

  .hero h1 {
    font-size: 40px !important;
    height: 100px;
  }

  .intro {
    font-size: 25px;
  }

  .Qualification-section {
    width: 90%;
    padding: 30px 0px;
  }

  .pro-section {
    width: 90%;
    padding: 30px 0px;
  }

  .alert-box {
    top: 50%;
    left: 50%;
  }

  .card-elementer {
    /* width: 95%; */
    margin-bottom: 10px;
  }
}



/* from button */
.alert-box {
  position: fixed;
  top: 15%;
  left: 90%;
  transform: translate(-50%, -50%);
  background-color: #1e1e1e;
  color: white;
  padding: 8px 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 9999;
  font-size: 18px;
  margin: 0px;
  width: 18%;
  animation: slideIn 0.4s ease-out;
}

.alert-box.show {
  display: block;
  animation: fadeInOut 3s forwards;
}

/* Icon pop animation */
@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Slide in from top */
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.button-all {
  all: unset;
  width: 100px;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-all::after,
.button-all::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-all::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #7c3aed;
  border-radius: 10px;
}

.button-all::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-all:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-all:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-all:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}


.Success-icon i {
  font-size: 32px;
  color: #38a169;
  animation: popIn 0.4s ease-out;
}

.Success-icon {
  /* margin-right: 16px; */
}

.alert-box h4 {
  margin: 0 0 4px;
  font-size: 18px;
}

.alert-box p {
  margin: 0;
  font-size: 14px;
}















@media screen and (max-width:800px) {
  .banner-section-background {
    height: 100%;
  }

}


::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
      border: 1px solid #fff;
        background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background-color: #7c3aed;
  /* border-radius: 8px; */
      border: 1px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
  /* background: #fff; */
}





/* .hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
} */

/* === View-based Block Animation === */
.block {
  animation: appear 1s linear;
  animation-timeline: view();
  animation-range: entry 0% cover 10%;
  animation-duration: 0.5s;
}

/* === Keyframes === */
@keyframes appear {
  from { opacity: 0; scale: 0; }
  to { opacity: 1; scale: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* === Global === */
.animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}
/* === Banner Section === */
.animate-section .banner-section-background,
.hero p.intro,
.hero h1,
.hero p,
.button-all {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.hero p.intro { animation-delay: 0.3s; }
.hero h1       { animation-delay: 0.6s; }
.hero p        { animation-delay: 0.9s; }
.button-all    { animation-delay: 1.2s; }

/* === About Section === */
.animate-section .intro-section,
.intro-section .about-header,
.intro-section img,
.intro-section .about-me {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;  
}

.intro-section .about-header { animation-delay: 0.3s; }
.intro-section img           { animation: slideInLeft 1s ease forwards; animation-delay: 0.5s; }
.intro-section .about-me     { animation: slideInRight 1s ease forwards; animation-delay: 0.8s; }

/* === Skills Section === */
.skill-section,
.tools-box {
  opacity: 0;
  animation: fadeInScale 1s ease forwards;
}

.tools-box { animation-delay: 1.2s; }

.skill-section h3.about-header {
  opacity: 0;
  animation: slideUp 1s ease forwards;
  animation-delay: 0.2s;
}

.skills-grid .skill-card {
  opacity: 0;
  animation: fadeInScale 0.6s ease forwards;
}

.skills-grid .skill-card:nth-child(1) { animation-delay: 0.3s; }
.skills-grid .skill-card:nth-child(2) { animation-delay: 0.4s; }
.skills-grid .skill-card:nth-child(3) { animation-delay: 0.5s; }
.skills-grid .skill-card:nth-child(4) { animation-delay: 0.6s; }
.skills-grid .skill-card:nth-child(5) { animation-delay: 0.7s; }
.skills-grid .skill-card:nth-child(6) { animation-delay: 0.8s; }
.skills-grid .skill-card:nth-child(7) { animation-delay: 0.9s; }
.skills-grid .skill-card:nth-child(8) { animation-delay: 1.0s; }
.skills-grid .skill-card:nth-child(9) { animation-delay: 1.1s; }

/* === Education Section === */
.animate-section .Qualification-section .card-elementer {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease-out forwards;
}

.Qualification-section .card-elementer:nth-child(2) {
  animation-delay: 0.3s;
}

.section-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-box:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* === Project Section === */
.animate-section .slider-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1s ease forwards;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.slider-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.slider-card:hover .slider-image img {
  transform: scale(1.1);
}

.slider-contend {
  padding: 15px;
  animation: fadeIn 1.5s ease;
}

/* === Contact Section === */
.animate-section .contact-left {
  animation: slideInLeft 1s ease forwards;
  opacity: 0;
}

.message-from {
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

input[type="text"],
input[type="email"],
textarea {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  /* box-shadow: 0 0 10px rgba(100, 100, 255, 0.4);
  transform: scale(1.02);
  outline: none; */
  background: transparent;
}

.button-all {
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-all:hover {
  transform: translateY(-2px);
}

