﻿@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=JetBrains+Mono:wght@400;500&display=swap');

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


#particles-js {
  height: 100vh;
  width: 100vw;
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;

}


.certifications-section {
  padding: 100px 5%;
  color: white;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}





.skill-tag {
  background-color: rgba(184, 133, 255, 0.2);
  color: #b885ff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}


.btn-cert {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background: linear-gradient(45deg, #00ffe5, #b885ff);
  color: black;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

.btn-cert:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 229, 0.4);
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  padding-top: 60px;

}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80vh;
  object-fit: contain;
  background-color: transparent;
  animation-name: zoom;
  animation-duration: 0.6s;

}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ee0505;
  
  color: #fff;
  
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.close-btn:hover,
.close-btn:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
  background: #b80000;
}

@media (max-width: 768px) {
  .certifications-section {
    padding: 80px 3%;
  }

  .section-title {
    font-size: 36px;
  }

  .cert-grid {

    grid-template-columns: 1fr;
  }

  .cert-card {
    padding: 20px;
    width: 100%;
  }

  .modal {
    padding-top: 250px;
  }
}



.Project-section {
  padding: 100px 5%;
  color: white;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container-proj {
  width: 100%;
}

.proj-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.proj-card {

  width: calc(33.333% - 20px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: floatingCard 6s infinite ease-in-out;
}

@keyframes floatingCard {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

.proj-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 229, 0.5), 0 0 30px rgba(133, 255, 188, 0.5);
  border-color: #00ff6a;
}

.proj-image-container {
  width: 250px;
  height: 180px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;


}

.proj-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proj-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.proj-description {
  font-size: 16px;
  color: #ccc;
  flex-grow: 1;
}

.proj-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 15px 0;
}


.btn-proj {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background: linear-gradient(45deg, #00ffe5, #b885ff);
  color: black;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

.btn-proj:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 229, 0.4);
}

.btn-drive {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background: linear-gradient(45deg, #00ffe5, #b885ff);
  color: black;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

.btn-drive:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 229, 0.4);
}

@media (max-width: 768px) {
  .Project-section {
    padding: 80px 3%;
  }

  .proj-grid {

    grid-template-columns: 1fr;
  }

  .proj-card {
    padding: 20px;
    width: 100%;
  }
}


body.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hide {
  display: none !important;
}

html,
body {
  overflow-x: hidden;
  touch-action: manipulation;
  -webkit-overflow-scrolling: touch;
}

body {
  overflow-x: hidden;

  background-color: #000000;
  color: white;
  opacity: 0;
  animation: fadeIn 0.3s ease-in forwards;
  
}





.youtube::after {
  content: "YouTube";
  position: absolute;
  bottom: 125%;
  
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s;
}

.youtube:hover::after {
  opacity: 1;
}

.Instagram::after {
  content: "Instagram";
  position: absolute;
  bottom: 125%;
  
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s;
}

.Instagram:hover::after {
  opacity: 1;
}

.Github::after {
  content: "Github";
  position: absolute;
  bottom: 125%;
  
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s;
}

.Github:hover::after {
  opacity: 1;
}





.anim {
  opacity: 0;
  transform: translateY(30px);
  animation: moveup 0.5s linear forwards;
}

.anim4 {
  opacity: 0;
  transform: translateY(30px);
  animation: moveup 1.0s linear forwards;
}

@keyframes moveup {
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.anim1 {
  animation: bounce 0.8s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.line-1 {
  position: relative;
  top: 0%;
  width: 24em;
  margin: auto;
  border-right: 2px solid rgba(255, 255, 255, .75);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(0%);
}




.flicker-in-1 {
  -webkit-animation: flicker-in-1 1.3s linear both;
  animation: flicker-in-1 1.3s linear both;
}

@-webkit-keyframes flicker-in-1 {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  10.1% {
    opacity: 1;
  }

  10.2% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  20.1% {
    opacity: 1;
  }

  20.6% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  30.1% {
    opacity: 1;
  }

  30.5% {
    opacity: 1;
  }

  30.6% {
    opacity: 0;
  }

  45% {
    opacity: 0;
  }

  45.1% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  55% {
    opacity: 1;
  }

  55.1% {
    opacity: 0;
  }

  57% {
    opacity: 0;
  }

  57.1% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  60.1% {
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  65.1% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  75.1% {
    opacity: 0;
  }

  77% {
    opacity: 0;
  }

  77.1% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  85.1% {
    opacity: 0;
  }

  86% {
    opacity: 0;
  }

  86.1% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes flicker-in-1 {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  10.1% {
    opacity: 1;
  }

  10.2% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  20.1% {
    opacity: 1;
  }

  20.6% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  30.1% {
    opacity: 1;
  }

  30.5% {
    opacity: 1;
  }

  30.6% {
    opacity: 0;
  }

  45% {
    opacity: 0;
  }

  45.1% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  55% {
    opacity: 1;
  }

  55.1% {
    opacity: 0;
  }

  57% {
    opacity: 0;
  }

  57.1% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  60.1% {
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  65.1% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  75.1% {
    opacity: 0;
  }

  77% {
    opacity: 0;
  }

  77.1% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  85.1% {
    opacity: 0;
  }

  86% {
    opacity: 0;
  }

  86.1% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}



.tracking-in-expand {
  -webkit-animation: tracking-in-expand 2.0s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
  animation: tracking-in-expand 2.0s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}


.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}


.tilt-in-left-1 {
  -webkit-animation: tilt-in-left-1 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: tilt-in-left-1 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes tilt-in-left-1 {
  0% {
    -webkit-transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
    transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
    transform: rotateX(0deg) translateX(0) skewX(0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-left-1 {
  0% {
    -webkit-transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
    transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
    transform: rotateX(0deg) translateX(0) skewX(0deg);
    opacity: 1;
  }
}



.focus-in-expand {
  -webkit-animation: focus-in-expand 1.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: focus-in-expand 1.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}




.bounce-top {
  -webkit-animation: bounce-top 0.9s both;
  animation: bounce-top 0.9s both;
}

@-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }

  24% {
    opacity: 1;
  }

  40% {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  65% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  82% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  93% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }

  24% {
    opacity: 1;
  }

  40% {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  65% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  82% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  93% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}


.star {
  position: fixed;
  pointer-events: none;
  z-index: 1;
}

.star:before,
.star:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '\2726';
  font-size: 9px;
}

.star:before {
  color: transparent;
  text-shadow: 0 0 3px rgb(250, 250, 174);
}

.star:after {
  background: yellow;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.galaxy-text {
  position: relative;
  font-weight: bold;
  background: linear-gradient(135deg, #ffffff, #85863c, #288316, #3e9db5);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: galaxyShift 5s infinite linear;
}



.galaxy-text::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  opacity: 0.6;
  mix-blend-mode: screen;
  
  animation: twinkle 3s infinite alternate;
}

@keyframes galaxyShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.4;
    transform: translateY(0px);
  }

  50% {
    opacity: 0.8;
    transform: translateY(-2px);
  }

  100% {
    opacity: 0.4;
    transform: translateY(0px);
  }
}


.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

@keyframes hyperspace {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: scale(3);
    filter: blur(10px);
  }
}

.hyperspace {
  animation: hyperspace 0.3s ease-out forwards;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

li,
a,
button {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #edf0f1;
  text-decoration: none;
}


.button-container-2 {
  position: relative;
  width: 200px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid #000;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  transition: 0.5s;
  letter-spacing: 1px;
  border-radius: 8px;
}


.button-container-2 button {
  width: 101%;
  height: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: bold;
  background: #9ea83e;
  -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  border: none;
  color: #0c0c0c;
  cursor: pointer;
  -webkit-animation: ani2 0.7s steps(29) forwards;
  animation: ani2 0.7s steps(29) forwards;
}

.button-container-2 button:hover {
  -webkit-animation: ani 0.7s steps(29) forwards;
  animation: ani 0.7s steps(29) forwards;
}

.mas {
  position: absolute;
  color: #fff;
  text-align: center;
  width: 101%;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 15px;
  margin-top: 13px;
  overflow: hidden;
  font-weight: bold;
}

@-webkit-keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@-webkit-keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

a {
  color: #00ff95;
}

.intro {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  
  flex-direction: column;
}

.btn-click {
  user-select: none;
  
  -webkit-user-select: none;
  
  -ms-user-select: none;
  
  display: flex;
  margin: 5px auto;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(45deg, #1e3c72, #2a5298, #4a148c, #000000);
  background-size: 300% 300%;
  color: white;
  border: 2px solid #ffffff;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  animation: galaxyMove 6s infinite linear;
}


.btn-click:hover {
  background: linear-gradient(45deg, #4a148c, #2a5298, #1e3c72, #000000);
  color: cyan;
  transform: scale(1.1);
  box-shadow: 0 0 15px cyan;
}


.btn-click:active {
  transform: scale(0.9);
  box-shadow: 0 0 25px white;
}


@keyframes galaxyMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.intro h1 {
  font-size: 50px;
  padding: 0 10%;
  text-align: center;
}



.new-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  padding: 1rem 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-logo:hover {
  color: #00ffe5;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-item {
  margin-left: 1.5rem;
}

.navbar-link {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-link:hover,
.navbar-link.active {
  color: white;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00ffe5;
  transition: width 0.3s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}


.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}


.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}


@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.4s ease-in-out;
    padding-top: 2rem;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-item {
    margin: 1rem 0;
    margin-left: 0;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.5s ease forwards;
  }

  .navbar-menu.active .navbar-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .navbar-menu.active .navbar-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .navbar-menu.active .navbar-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .navbar-menu.active .navbar-item:nth-child(4) {
    animation-delay: 0.4s;
  }

  .navbar-menu.active .navbar-item:nth-child(5) {
    animation-delay: 0.5s;
  }

  .navbar-menu.active .navbar-item:nth-child(6) {
    animation-delay: 0.6s;
  }

  .navbar-link {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .contact-btn .navbar-link {
    background: linear-gradient(45deg, #00ffe5, #0099cc);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    margin-top: 1rem;
    transition: all 0.3s ease;
  }

  .contact-btn .navbar-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 229, 0.3);
  }
}


@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.content {
  padding: 2rem;
  text-align: center;
}

.content h1 {
  color: #00ffe5;
  margin-bottom: 1rem;
}

.content p {
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}











.enhanced-contact-section {
  min-height: 100vh;
  padding: 120px 2rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  justify-content: center;
  
  gap: 60px;
  align-items: center;
}

.contact-info-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  border: 2px solid rgba(0, 255, 229, 0.2);
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 229, 0.05), transparent);
  animation: rotate 10s linear infinite;
  z-index: -1;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px) rotateY(0deg);
  }

  50% {
    transform: translateY(-10px) rotateY(2deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.profile-section {
  text-align: center;
  margin-bottom: 40px;
}

.profile-pic-container {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00ffe5;
  box-shadow: 0 0 30px rgba(0, 255, 229, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(0, 255, 229, 0.8);
}

.status-indicator {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  background: #00ff00;
  border: 3px solid #000;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
  }
}

.contact-heading {
  font-size: 2.8rem;
  background: linear-gradient(45deg, #00ffe5, #b885ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-subheading {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.contact-subtitle {
  background: linear-gradient(135deg, #a7a7a7, #13c9e6, #8e44ad);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s infinite linear;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 40px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.contact-details-grid {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 229, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-detail:hover {
  transform: translateX(10px);
  border-color: #00ffe5;
  box-shadow: 0 5px 20px rgba(0, 255, 229, 0.3);
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #00ffe5, #b885ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
  flex-shrink: 0;
}

.detail-content {
  flex-grow: 1;
}

.detail-label {
  display: block;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 5px;
}

.detail-value {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-value:hover {
  color: #00ffe5;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 229, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #00ffe5;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #00ffe5;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link:hover {
  color: #000;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 255, 229, 0.5);
  border-color: #00ffe5;
}

.social-link svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
}



@media (max-width: 768px) {


  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enhanced-contact-section {
    padding: 100px 1rem 2rem;
  }

  .contact-heading {
    font-size: 2.2rem;
  }

}

@media (max-width: 480px) {

  .contact-info-section,
  .contact-form-section {
    padding: 30px 25px;
  }

  .profile-pic {
    width: 150px;
    height: 150px;
  }

  .contact-heading {
    font-size: 1.8rem;
  }

}



@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: shake 0.2s ease-in-out infinite;
}



@keyframes galaxyMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

section .animate {
  opacity: 0;
  filter: blur(5px);
  transition: 1s;
}




.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 50px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-greeting {
  font-size: 1.5rem;
  color: #00ffe5;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0;
  animation: slideUp 1s ease 0.2s forwards;
}

.hero-name {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 1s ease 0.4s forwards;
  background: linear-gradient(135deg, #fff, #00ffe5, #fff);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 1s ease 0.6s forwards;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #00ffe5;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 1s ease 0.8s forwards;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: slideUp 1s ease 1s forwards;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 229, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #00ffe5;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #00ffe5;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link:hover {
  color: #000;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 255, 229, 0.5);
  border-color: #00ffe5;
}

.social-link svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.1);
}


.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #00ffe5, #00c9ff, #0099ff);
  background-size: 200% 200%;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 255, 229, 0.3);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: slideUp 1s ease 1.2s forwards, gradientShift 3s ease infinite;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 255, 229, 0.5);
  color: #000;
}


.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 400px;
  height: 500px;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.5s forwards;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 100px rgba(0, 255, 229, 0.2);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #00ffe5, #00c9ff, #0099ff, #00ffe5);
  background-size: 400% 400%;
  border-radius: 40px;
  z-index: 1;
  animation: borderPulse 4s ease-in-out infinite;
}

.image-container:hover .profile-img {
  transform: scale(1.05) rotateY(10deg);
}








@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes borderPulse {

  0%,
  100% {
    opacity: 0.6;
    background-position: 0% 50%;
  }

  50% {
    opacity: 1;
    background-position: 100% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateY(10px);
  }
}


.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #00ffe5;
  transition: all 0.3s ease;
  border-radius: 2px;
}


@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-name {
    font-size: 3.5rem;
  }

  .image-container {
    width: 350px;
    height: 450px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .hero-name {
    font-size: 3rem;
  }

  .hero-section {
    padding: 100px 5% 30px;
  }

  .image-container {
    width: 300px;
    height: 400px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .image-container {
    width: 280px;
    height: 360px;
  }

}


.about-section {
  min-height: 100vh;
  padding: 100px 5% 50px;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}



.section-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.about-image-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 400px;
  height: 500px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow:
    0 20px 40px rgba(0, 255, 229, 0.2),
    0 0 60px rgba(184, 133, 255, 0.1);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #00ffe5, #b885ff, #007bff);
  border-radius: 40px;
  z-index: 1;
  animation: borderGlow 4s ease-in-out infinite;
}


.about-content {
  padding-left: 40px;
}

.content-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 30px;
  text-align: justify;
}

.highlight-text {
  color: #00ffe5;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}



.qualities-section {
  margin-top: 40px;
}

.qualities-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: white;
  font-weight: 600;
}

.qualities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.quality-item {
  background: rgba(184, 133, 255, 0.1);
  border: 1px solid rgba(184, 133, 255, 0.3);
  border-radius: 25px;
  padding: 15px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.quality-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 133, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.quality-item:hover::before {
  left: 100%;
}

.quality-item:hover {
  transform: translateY(-3px);
  border-color: #b885ff;
  box-shadow: 0 5px 15px rgba(184, 133, 255, 0.3);
}

.journey-timeline {
  margin-top: 100px;
  position: relative;
}

.timeline-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 60px;
  color: white;
  font-weight: 600;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, #00ffe5, #b885ff);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 30px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 30px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background: #00ffe5;
  border: 4px solid #000;
  top: 50%;
  border-radius: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
  background: #b885ff;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 229, 0.2);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.02);
  border-color: #00ffe5;
  box-shadow: 0 10px 25px rgba(0, 255, 229, 0.2);
}

.timeline-year {
  font-size: 1.1rem;
  color: #00ffe5;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-text {
  color: #ddd;
  line-height: 1.6;
}


@keyframes gradientFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes borderGlow {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(10px) rotate(240deg);
  }
}


@media (max-width: 1024px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .about-content {
    padding-left: 0;
  }

  .image-wrapper {
    width: 300px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .about-section {
    padding: 80px 5% 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item::after {
    left: 21px;
  }

  .timeline-item:nth-child(even) {
    left: 0%;
  }

  .timeline-item:nth-child(even)::after {
    left: 21px;
    background: #00ffe5;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .image-wrapper {
    width: 250px;
    height: 320px;
  }

  .content-header h2 {
    font-size: 2rem;
  }

  .qualities-list {
    grid-template-columns: 1fr;
  }
}




.skills-section {
  min-height: 100vh;
  padding: 100px 5% 50px;
  position: relative;
  overflow: hidden;
}

.skills-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}


.section-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.skills-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.overview-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 229, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 229, 0.1), transparent);
  transition: left 0.5s ease;
}

.overview-card:hover::before {
  left: 100%;
}

.overview-card:hover {
  transform: translateY(-10px);
  border-color: #00ffe5;
  box-shadow: 0 15px 35px rgba(0, 255, 229, 0.3);
}

.overview-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #00ffe5, #b885ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: iconFloat 3s ease-in-out infinite;
}

.overview-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.overview-description {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}

.skills-categories {
  display: grid;
  gap: 60px;
}

.category {
  position: relative;
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  justify-content: center;
}

.category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00ffe5, #b885ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 20px;
  color: #000;
}

.category-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.skill-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 229, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 18px;
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #00ffe5;
  box-shadow:
    0 15px 35px rgba(0, 255, 229, 0.3),
    0 0 0 1px rgba(0, 255, 229, 0.2);
}

.skill-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.skill-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon img {
  transform: scale(1.1) rotateY(15deg);
}

.skill-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
  position: relative;
  z-index: 2;
}

.skill-level {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.level-text {
  font-size: 0.9rem;
  color: #00ffe5;
  font-weight: 500;
  margin-right: 15px;
}

.level-bar {
  width: 100px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.level-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffe5, #b885ff);
  border-radius: 3px;
  transition: width 1s ease;
  position: relative;
}

.level-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

.skill-description {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.proficiency-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-color {
  width: 20px;
  height: 6px;
  border-radius: 3px;
}

.beginner {
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
}

.intermediate {
  background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.advanced {
  background: linear-gradient(90deg, #00ffe5, #b885ff);
}

.expert {
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.legend-text {
  font-size: 0.9rem;
  color: #ccc;
}


@keyframes gradientFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}


@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .skills-section {
    padding: 80px 5% 40px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
  }

  .category-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .proficiency-legend {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .skill-card {
    padding: 25px;
  }

  .proficiency-legend {
    flex-direction: column;
    align-items: center;
  }
}





@media (max-width: 1674px) {
  .blog {
    padding: 10% 5%;
    flex-direction: column;
    gap: 3em;
  }

  .home-content h3 {
    font-size: 40px;
    margin-top: 15px;
  }

  .home-content H3 .color {
    font-size: 36px;
  }

  .img-box img {
    width: 380px;
  }


  .blog-img video {
    width: 450px;
  }

  .blog-content h2 {
    font-size: 30px;
  }

  .blog-content p {
    font-size: 15px;
  }

  .img-box img {
    margin-top: -20px;
  }

}

@media (max-width: 665px) {
  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;
    margin-top: 5vh;
  }

  .blog-img video {
    width: 100% !important;
    height: auto;
  }

}

@media (max-width: 573px) {
  .blog-img video {
    width: 100% !important;
    height: auto;
  }

  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;
    margin-top: 10vh;
  }
}

@media (max-width: 529px) {
  .blog-img video {
    width: 100% !important;
    height: auto;
  }

  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;
    margin-top: 15vh;
  }
}

@media (max-width: 1024px) {

  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;
    margin-top: -35vh;
  }

  .blog-content h2 {
    font-size: 42px;
  }

  .blog-content p {
    font-size: 22px !important;
  }

  .home-content h3 {
    font-size: 36px;
    margin-top: 15px;
  }

  .home-content H3 .color {
    font-size: 36px;
  }

  .img-box img {

    width: 280px;
  }

  .blog-img video {
    width: 460px;
  }


  .img-box img {
    margin-top: -20px;
  }

}

@media(max-width:540px) {
  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;
    max-height: 80vh;
  }

  .blog-content h2 {
    font-size: 42px;
  }

  .blog-content h3 {
    font-size: 15px;
  }

  .blog-content p {
    font-size: 10px !important;
  }
}

@media(max-width:1280px) {

  .blog-content h2 {
    font-size: 35px;
  }

  .blog-content h3 {
    font-size: 15px;
  }

  .blog-content p {
    font-size: 12px !important;
  }
}

@media(max-width: 853px) {

  .blog-content h2 {
    font-size: 35px;
  }

  .blog-content h3 {
    font-size: 15px;
  }

  .blog-content p {
    font-size: 20px !important;
  }
}








.Contact {
  padding: 2% 5%;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;

}

.box_animation {
  background: repeating-conic-gradient(from var(--a), #00ff9de7 0%, #00ff9de7 5%, transparent 5%, transparent 40%,
      #2fe97de7 50%);
  animation: animations-1 4s linear infinite;
  border-radius: 20px;
  width: 750px;
  padding: 1px;
  position: relative;

}

@property --a {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes animations-1 {
  0% {
    --a: 0deg;
  }

  100% {
    --a: 360deg;
  }
}

.box_animation::after {
  content: '';
  position: absolute;
  inset: 8px;
  background: #2d2d39;
  border-radius: 15px;
  border: 8px solid #25252b;
  z-index: 0;
}

.contact-heading {
  margin-top: 5%;
  font-size: 35px;
  position: relative;
  z-index: 5;
}

.contact-down {
  font-size: 15px;
  position: relative;
  z-index: 6;
  margin-bottom: 5%;
}

.container_5 {
  border-radius: 20px;
  padding: 30px;
  width: 750px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.picture {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 20px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-bottom: 5%;
  z-index: 3;
}

.picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.Social_links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;

}

.person {
  width: 50px;
  height: 50px;
  background-color: white;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  margin-bottom: 6%;
}

.person svg {
  width: 35px;
  height: 35px;
}

.person::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 30px;
  height: 2px;
  background-color: black;
  transform: translateY(-50%);
}

.person:last-child::before {
  display: none;
}

.person:hover {
  background-color: #e3f2fd;
  color: #2196f3;
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(33, 150, 243, 0.6);
}


@media (max-width: 350px) {


  .b .blog-img video {
    width: 350px !important;
    height: auto;

  }

  .blog-content h2 {
    font-size: 42px !important;
  }

}

@media (max-width: 390px) {
  .navbar-brand {
    width: 70px;
  }

  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;
    margin-top: 38vh !important;
  }
}

@media (max-width: 600px) {


  .home-content h3 {
    font-size: 20px;
    text-align: center;
    height: auto;
    width: auto;
  }

  .home-content h2 {
    font-size: 15px;
    text-align: center;
    left: auto;
  }

  .home-content p {
    font-size: 15px;
    text-align: center;
    padding: 0 10px;
  }

  .img-box img {
    width: 100%;
    max-width: 250px;
    height: auto;
  }

}

@media (max-width: 1120px) {


  .blog-img video {
    width: 100%;
    max-width: 550px;
    margin-top: 70%;
    height: auto;

  }

  .blog-content h2 {
    font-size: 42px;
    text-align: center;
    margin-top: -5;
  }

  .blog-content {
    height: auto;
  }

  .blog-content p {
    font-size: 20px;
    text-align: justify;
    padding: 0 15px;
  }

}




@media(max-width: 375px) {


  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;
    max-height: -575vh !important;
  }

  .blog-content h2 {
    font-size: 25px !important;
  }

  .blog-content p {
    font-size: 10px !important;
  }
}

@media(max-width:414px) {
  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;
    margin-top: 25vh !important;
  }

  .blog-content h2 {
    font-size: 25px !important;
  }

  .blog-content p {
    font-size: 12px !important;
  }
}

@media(max-width: 820px) {
  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;
    margin-top: -25vh !important;
  }
}

@media(max-width: 768px) {
  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;
    margin-top: -12vh !important;
  }
}

@media (max-width: 430px) {

  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;

  }

  .blog-img video {
    margin-top: 60vh !important;
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  .blog-content h2 {
    font-size: 42px;
    text-align: center;
  }

  .blog-content {
    height: auto;
  }

  .blog-content p {
    font-size: 10px !important;
    text-align: justify;
  }
}

@media (max-width: 430px),
(max-width: 768px),
(max-width: 912px),
(max-width: 1078px) {
  body {
    font-size: 16px;
    overflow-x: hidden;
  }

  .contect-map iframe {
    height: 300px;
    width: 400px;
    margin-top: 0%;
    margin-left: 0%;
  }


  .social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-icons a {
    margin: 5px;
  }

  .blog {
    padding: 10% 15%;
    flex-direction: column;
    gap: 2em;

  }

  .blog-img video {
    margin-top: 60vh !important;
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  .blog-content h2 {
    font-size: 42px;
    text-align: center;
  }

  .blog-content {
    height: auto;
  }

  .blog-content p {
    font-size: 20px;
    text-align: justify;
    padding: 0 15px;
  }




  .skills-container {
    flex-direction: column;
    align-items: center;
  }

  .skills-category {
    width: 100%;
    text-align: center;
  }

  .skills-category ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .skills-category ul li {
    margin: 5px;
  }


}



@media (max-width: 768px) {
  .contact_me {
    display: none !important;
  }
}


*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 373px) {
  body {
    font-size: 14px;
    overflow-x: hidden;
  }



  .home-content h3 {
    font-size: 18px;
    text-align: center;
  }

  .home-content h2 {
    font-size: 16px;
    text-align: center;
  }

  .home-content p {
    font-size: 14px;
    text-align: center;
  }

  .social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-icons a {
    margin: 5px;
  }

  .img-box img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .blog-img video {
    margin-top: 50%;
    max-width: 350px;
  }

  .blog-content h2 {
    font-size: 35px;
    text-align: center;
  }

  .blog-content p {
    font-size: 14px;
    text-align: justify;
  }


  .skills-container {
    flex-direction: column;
    align-items: center;
  }

  .skills-category {
    width: 100%;
    text-align: center;
  }

  .skills-category ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .skills-category ul li {
    margin: 5px;
  }



}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}


::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: darkgray;
}

::-webkit-scrollbar-thumb {
  
  background: black;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: white;
}


:root {
  --c: #00ffe5;
  
  --g: #00ff6a;
  
  --p: #b885ff;
  
  --b: #007bff;
  
  --surface: rgba(255, 255, 255, 0.04);
  --surface-h: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-h: rgba(0, 255, 229, 0.3);
  --text: rgba(255, 255, 255, 0.88);
  --dim: rgba(255, 255, 255, 0.45);
  --radius: 16px;
  --radius-lg: 24px;
  --glow: 0 0 28px rgba(0, 255, 229, 0.3), 0 0 56px rgba(0, 255, 229, 0.12);
  --glow-p: 0 0 28px rgba(184, 133, 255, 0.3);
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #000;
  color: var(--text);
  overflow-x: hidden;
}


::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--c);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--p);
}


#particles-js {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(0, 255, 229, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(184, 133, 255, 0.04) 0%, transparent 55%),
    #000000;
}


.new-navbar {
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(22px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(180%) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 0 5% !important;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background 0.4s !important;
}

.navbar-container {
  max-width: 1400px;
  padding: 0 !important;
}

.navbar-logo {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 19px !important;
  background: linear-gradient(90deg, var(--c), var(--p));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.3px;
  transition: opacity 0.25s !important;
}

.navbar-logo:hover {
  opacity: 0.8;
}

.navbar-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--dim) !important;
  padding: 6px 13px !important;
  border-radius: 9px !important;
  transition: all 0.22s !important;
  letter-spacing: 0.2px;
}

.navbar-link:hover,
.navbar-link.active {
  color: #fff !important;
  background: var(--surface-h) !important;
}

.navbar-link.active {
  color: var(--c) !important;
  background: rgba(0, 255, 229, 0.09) !important;
}


.navbar-link::after {
  display: none !important;
}

.contact-btn .navbar-link {
  border: 1px solid rgba(0, 255, 229, 0.28) !important;
  color: var(--c) !important;
}

.contact-btn .navbar-link:hover {
  background: rgba(0, 255, 229, 0.1) !important;
  border-color: var(--c) !important;
  box-shadow: 0 0 14px rgba(0, 255, 229, 0.2) !important;
}

.hamburger span {
  background: var(--c) !important;
  width: 22px !important;
  height: 2px !important;
  border-radius: 2px !important;
}





.cert-card,
.proj-card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: none !important;
  animation: none !important;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.4s,
    box-shadow 0.4s !important;
}

.cert-card:hover,
.proj-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  border-color: var(--border-h) !important;
  box-shadow: var(--glow) !important;
}


.cert-card,
.proj-card {
  position: relative;
  overflow: hidden;
}

.cert-card::before,
.proj-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c), var(--p));
  opacity: 0;
  transition: opacity 0.4s;
}

.cert-card:hover::before,
.proj-card:hover::before {
  opacity: 1;
}


.cert-title,
.proj-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: -0.2px;
}

.cert-description,
.proj-description {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14.5px !important;
  color: var(--dim) !important;
  line-height: 1.7 !important;
  font-weight: 300 !important;
}


.skill-tag {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  background: rgba(184, 133, 255, 0.1) !important;
  border: 1px solid rgba(184, 133, 255, 0.22) !important;
  color: var(--p) !important;
  border-radius: 100px !important;
  padding: 4px 12px !important;
  letter-spacing: 0.5px;
  transition: box-shadow 0.25s, background 0.25s;
}

.skill-tag:hover {
  background: rgba(184, 133, 255, 0.2) !important;
  box-shadow: var(--glow-p);
}


.btn-cert,
.btn-proj,
.btn-drive {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  background: linear-gradient(135deg, var(--c), #00c9ff) !important;
  color: #000 !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(0, 255, 229, 0.28) !important;
  transition: transform 0.25s, box-shadow 0.25s !important;
  position: relative;
  overflow: hidden;
}

.btn-cert::before,
.btn-proj::before,
.btn-drive::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.5s ease;
}

.btn-cert:hover::before,
.btn-proj:hover::before,
.btn-drive:hover::before {
  left: 100%;
}

.btn-cert:hover,
.btn-proj:hover,
.btn-drive:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(0, 255, 229, 0.45) !important;
}

.cta-button {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  letter-spacing: 0.3px !important;
}


.modal {
  background-color: rgba(0, 0, 0, 0.96) !important;
  backdrop-filter: blur(18px) !important;
}

.modal-content {
  border-radius: 14px !important;
  border: 1px solid rgba(0, 255, 229, 0.18) !important;
  box-shadow: var(--glow) !important;
}

.close-btn {
  background: rgba(238, 5, 5, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
  width: 38px !important;
  height: 38px !important;
  font-size: 18px !important;
}

.close-btn:hover {
  background: #b80000 !important;
  transform: scale(1.1);
}



.contact-info-section {
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(0, 255, 229, 0.15) !important;
  background: var(--surface) !important;
}

.contact-detail {
  border-radius: 12px !important;
  border: 1px solid var(--border) !important;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
}

.contact-detail:hover {
  border-color: var(--c) !important;
  box-shadow: 0 4px 20px rgba(0, 255, 229, 0.2) !important;
  transform: translateX(8px) !important;
}

.profile-pic {
  border: 3px solid var(--c) !important;
  box-shadow: 0 0 24px rgba(0, 255, 229, 0.4) !important;
}

.contact-heading {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
}


.hero-name {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -1px !important;
}

.hero-greeting {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase;
}

.image-container::before {
  border-radius: 42px !important;
  animation: borderGlow 5s ease-in-out infinite !important;
}

@keyframes borderGlow {

  0%,
  100% {
    opacity: 0.5;
    background-position: 0% 50%;
  }

  50% {
    opacity: 1;
    background-position: 100% 50%;
  }
}



.quality-item {
  border-radius: 100px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13.5px !important;
}


.box_animation {
  background: repeating-conic-gradient(from var(--a), var(--c) 0%, var(--c) 5%, transparent 5%, transparent 40%, var(--g) 50%) !important;
}


li,
a,
button {
  font-family: 'DM Sans', sans-serif !important;
}


.social-link {
  border: 1px solid var(--border) !important;
  transition: all 0.28s !important;
}

.social-link:hover {
  box-shadow: 0 8px 22px rgba(0, 255, 229, 0.4) !important;
}


.timeline-item {
  border-radius: 14px !important;
}


.cert-image-container,
.proj-image-container {
  border-radius: 10px;
  overflow: hidden;
}


.section-subtitle {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300 !important;
  color: var(--dim) !important;
}


@media (max-width: 768px) {

  .navbar-menu.active {
    background: rgba(0, 0, 0, 0.97) !important;
    backdrop-filter: blur(20px) !important;
  }
}



.page-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 255, 229, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--c);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: t-slideUp 0.7s ease forwards 0.3s;
}


.page-hero .hero-subtitle {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.52) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.52) !important;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
  opacity: 0;
  animation: t-slideUp 0.7s ease forwards 0.6s;
}


.page-hero {
  padding-top: 100px !important;
  padding-bottom: 20px !important;
}

.stats-bar {
  margin-top: 30px !important;
  margin-bottom: 10px !important;
}

.stats-strip {
  margin-top: 30px !important;
  margin-bottom: 10px !important;
}

.hero-title .line-gradient {
  background: linear-gradient(90deg, var(--c) 0%, var(--p) 50%, var(--b) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: gradientFlow 4s ease infinite;
}


.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: slideUp 0.7s ease forwards 0.4s;
}

.stats-strip{
   display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: slideUp 0.7s ease forwards 0.4s;
}

.stat-item {
  padding: 20px 36px;
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--c);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}


.training-section {
  padding: 80px 5% 120px;
  color: white;
  min-height: 100vh;
}


.internship-block {
  margin-bottom: 100px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.internship-block.visible {
  opacity: 1;
  transform: translateY(0);
}
.Training-block {
  margin-bottom: 100px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.Training-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.block-number {
  font-family: 'Syne', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -8px;
}


.block-tag-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.block-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--c);
  background: rgba(0, 255, 229, 0.08);
  border: 1px solid rgba(0, 255, 229, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.block-tag.purple {
  color: var(--p);
  background: rgba(184, 133, 255, 0.08);
  border-color: rgba(184, 133, 255, 0.2);
}

.block-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
  min-width: 40px;
}


.internship-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 800 !important;
  background: none !important;
  -webkit-text-fill-color: white !important;
  color: white !important;
  margin-bottom: 12px !important;
  line-height: 1.1 !important;
}

.internship-dates {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 14px !important;
  color: var(--g) !important;
  margin-bottom: 48px !important;
  font-weight: 400 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.internship-dates::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px var(--g);
  animation: datePulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes datePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}


.internship-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 960px) {
  .internship-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .block-number {
    font-size: 80px;
  }

  
  .stats-strip{
    flex-direction: column;
  }

  

  .stat-item {
    padding: 16px 24px;
  }
}


.internship-about,
.about-card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  padding: 40px !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s !important;
}

.internship-about::before,
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c), var(--p));
  opacity: 0;
  transition: opacity 0.4s;
}

.internship-about:hover,
.about-card:hover {
  border-color: rgba(0, 255, 229, 0.25) !important;
  box-shadow: var(--glow) !important;
}

.internship-about:hover::before,
.about-card:hover::before {
  opacity: 1;
}

.about-label,
.about-card-label {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--c) !important;
  margin-bottom: 20px !important;
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-label::after,
.about-card-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 255, 229, 0.2);
}

.about-text,
.about-card p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-weight: 300 !important;
}


.skills-used {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.skill-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(184, 133, 255, 0.1);
  border: 1px solid rgba(184, 133, 255, 0.2);
  color: var(--p);
  transition: all 0.25s;
}

.skill-pill:hover {
  background: rgba(184, 133, 255, 0.2);
  box-shadow: var(--glow-p);
}


.photos-gallery,
.photo-gallery {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

.photo-card,
.photo-item {
  border-radius: 14px !important;
  overflow: hidden !important;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
  box-shadow: none !important;
}

.photo-card:hover,
.photo-item:hover {
  transform: translateY(-6px) scale(1.02) !important;
  border-color: rgba(0, 255, 229, 0.4) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--glow) !important;
}

.photo-card img,
.photo-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.photo-card:hover img,
.photo-item:hover img {
  transform: scale(1.06) !important;
}


.photo-card::after,
.photo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 229, 0.12), rgba(184, 133, 255, 0.12));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.photo-card:hover::after,
.photo-item:hover::after {
  opacity: 1;
}


.divider,
.section-divider {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  margin: 70px 0 !important;
  height: auto !important;
  background: none !important;
}

.divider::before,
.divider::after,
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 229, 0.3), transparent);
}

.section-divider .divider-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 255, 229, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c);
  font-size: 12px;
}


@keyframes t-slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 229, 0.2);
  box-shadow: var(--glow), 0 40px 80px rgba(0, 0, 0, 0.8);
  animation: lbZoom 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes lbZoom {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(10px);
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(238, 5, 5, 0.75);
  border-color: transparent;
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .training-section {
    padding: 60px 4% 80px;
  }

  .page-hero {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .internship-title {
    font-size: 28px !important;
  }

  .photos-gallery,
  .photo-gallery {
    grid-template-columns: 1fr !important;
  }

  .block-tag-strip {
    gap: 8px;
  }

  .internship-about,
  .about-card {
    padding: 28px !important;
  }
}



.page-hero .hero-subtitle,
.hero-subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
}


.hero-title1 {
  color: white !important;
  -webkit-text-fill-color: white !important;
  font-size: clamp(36px, 5.5vw, 64px) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
}


.hero-title .line-gradient {
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(90deg, var(--c), var(--p), var(--b)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}


.hero-eyebrow {
  font-size: 13px !important;
  color: var(--c) !important;
  letter-spacing: 4px !important;
}


.about-text,
.about-card p,
.internship-about p {
  font-size: 16px !important;
  line-height: 1.9 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.82) !important;
}


.about-label,
.about-card-label {
  font-size: 13px !important;
  letter-spacing: 3px !important;
  color: var(--c) !important;
}


.internship-dates {
  font-size: 15px !important;
  color: #00ff6a !important;
  -webkit-text-fill-color: #00ff6a !important;
}


.block-tag {
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
}




.skill-pill {
  font-size: 13px !important;
  padding: 6px 16px !important;
}


.cert-hero {
  padding-top: 130px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
}

.cert-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 255, 229, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cert-hero-title {
  color: white !important;
  -webkit-text-fill-color: white !important;
  font-size: clamp(36px, 5.5vw, 64px) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
}

.cert-hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  animation: slideUp 0.7s ease forwards 0.5s;
}


.cert-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: slideUp 0.7s ease forwards 0.4s;
}

.cert-stat {
  padding: 20px 36px;
  text-align: center;
  position: relative;
}

.cert-stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.cert-stat:last-child::after {
  display: none;
}

.cert-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--c);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.cert-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}


.cert-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  opacity: 0;
  animation: slideUp 0.7s ease forwards 0.8s;
}

.filter-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--dim);
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--c);
  color: var(--c);
  background: rgba(0, 255, 229, 0.08);
  box-shadow: 0 0 14px rgba(0, 255, 229, 0.15);
}

.filter-btn.active-purple {
  border-color: var(--p);
  color: var(--p);
  background: rgba(184, 133, 255, 0.08);
}


.certifications-section {
  padding: 0 5% 100px;
  min-height: unset !important;
  display: block !important;
  text-align: left !important;
  justify-content: unset !important;
  align-items: unset !important;
}

.container-certs {
  width: 100%;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: unset !important;
}

@media (max-width: 1100px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}


.cert-card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  padding: 28px !important;
  display: flex;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.4s, box-shadow 0.4s !important;
  animation: none !important;
  box-shadow: none !important;
  width: 100% !important;
  min-width: unset !important;
  opacity: 0;
  transform: translateY(30px);
}

.cert-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease,
    border-color 0.4s, box-shadow 0.4s;
}


.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c), var(--p));
  opacity: 0;
  transition: opacity 0.4s;
}

.cert-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(0, 255, 229, 0.3) !important;
  box-shadow: var(--glow) !important;
}

.cert-card:hover::before {
  opacity: 1;
}


.cert-image-container {
  width: 100% !important;
  height: 160px !important;
  margin-bottom: 22px !important;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.cert-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease;
}

.cert-card:hover .cert-image {
  transform: scale(1.04);
}


.cert-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  display: inline-block;
}

.cert-badge.cyan {
  color: var(--c);
  background: rgba(0, 255, 229, 0.08);
  border: 1px solid rgba(0, 255, 229, 0.2);
}

.cert-badge.purple {
  color: var(--p);
  background: rgba(184, 133, 255, 0.08);
  border: 1px solid rgba(184, 133, 255, 0.2);
}

.cert-badge.green {
  color: var(--g);
  background: rgba(0, 255, 106, 0.08);
  border: 1px solid rgba(0, 255, 106, 0.2);
}


.cert-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 12px !important;
  line-height: 1.3 !important;
  flex-grow: 0 !important;
}


.cert-description {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.75 !important;
  flex-grow: 1 !important;
  margin-bottom: 18px !important;
}


.cert-skills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin: 0 0 20px !important;
  justify-content: flex-start !important;
}

.skill-tag {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
  background: rgba(184, 133, 255, 0.1) !important;
  border: 1px solid rgba(184, 133, 255, 0.22) !important;
  color: var(--p) !important;
  letter-spacing: 0.5px;
}


.btn-cert {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  background: linear-gradient(135deg, var(--c), #00c9ff) !important;
  color: #000 !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(0, 255, 229, 0.25) !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  transition: transform 0.25s, box-shadow 0.25s !important;
  position: relative;
  overflow: hidden;
  margin-top: auto !important;
}

.btn-cert::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-cert:hover::before {
  left: 100%;
}

.btn-cert:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(0, 255, 229, 0.4) !important;
}

.btn-cert svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}


.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal.open {
  display: flex;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 229, 0.2);
  box-shadow: var(--glow), 0 40px 80px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-btn {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(238, 5, 5, 0.8);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s;
  z-index: 10000;
}

.close-btn:hover {
  background: #b80000;
  transform: scale(1.1);
}



@media (max-width: 600px) {

  .cert-stat::after {
    display: none;
  }
}


@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}


.Project-section {
  padding: 110px 5% 100px;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.container-proj {
  width: 100%;
  max-width: 1280px;
}


.proj-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: slideUp 0.7s ease forwards 0.2s;
}

.proj-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  color: white !important;
  -webkit-text-fill-color: white !important;
  font-size: clamp(36px, 5.5vw, 64px) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
}

.proj-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}


.proj-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: slideUp 0.7s ease forwards 0.4s;
}

.proj-stat {
  padding: 20px 36px;
  text-align: center;
  position: relative;
}

.proj-stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.proj-stat:last-child::after {
  display: none;
}

.proj-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--c);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.proj-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}


.proj-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  opacity: 0;
  animation: slideUp 0.7s ease forwards 0.6s;
}

.filter-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--dim);
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--c);
  color: var(--c);
  background: rgba(0, 255, 229, 0.08);
  box-shadow: 0 0 14px rgba(0, 255, 229, 0.15);
}

.filter-btn.active-purple {
  border-color: var(--p);
  color: var(--p);
  background: rgba(184, 133, 255, 0.08);
}


.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }
}


.proj-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.4s, box-shadow 0.4s;
  box-shadow: none;
  width: 100%;
  min-width: unset;
  opacity: 0;
  transform: translateY(30px);
  animation: none !important;
  
}

.proj-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease,
    border-color 0.4s, box-shadow 0.4s;
}


.proj-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c), var(--p));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}

.proj-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 229, 0.3);
  box-shadow: var(--glow);
}

.proj-card:hover::before {
  opacity: 1;
}


.proj-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.proj-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.proj-card:hover .proj-image {
  transform: scale(1.05);
}


.proj-badge {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 3;
}

.proj-badge.cyan {
  color: var(--c);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 229, 0.35);
  backdrop-filter: blur(8px);
}

.proj-badge.purple {
  color: var(--p);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(184, 133, 255, 0.35);
  backdrop-filter: blur(8px);
}

.proj-badge.green {
  color: var(--g);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 106, 0.35);
  backdrop-filter: blur(8px);
}


.proj-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.proj-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.proj-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 18px;
}

.proj-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.skill-tag {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
  background: rgba(184, 133, 255, 0.1) !important;
  border: 1px solid rgba(184, 133, 255, 0.22) !important;
  color: var(--p) !important;
  letter-spacing: 0.5px;
}


.btn-proj {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--c), #00c9ff);
  color: #000;
  border: none;
  box-shadow: 0 4px 18px rgba(0, 255, 229, 0.25);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  text-decoration: none;
}

.btn-proj::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-proj:hover::before {
  left: 100%;
}

.btn-proj:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 255, 229, 0.4);
}

.btn-proj svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}


.proj-card.hidden {
  display: none;
}


#videoModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(20px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#videoModal.open {
  display: flex;
}

#videoPlayer {
  max-width: 90%;
  max-height: 88vh;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 229, 0.2);
  box-shadow: var(--glow), 0 40px 80px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}


#imageModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(20px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#imageModal.open {
  display: flex;
}

#imageViewer {
  max-width: 90%;
  max-height: 88vh;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 229, 0.2);
  box-shadow: var(--glow), 0 40px 80px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

#closeModal,
#closeImageModal {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(238, 5, 5, 0.85);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s;
  z-index: 10000;
}

#closeModal:hover,
#closeImageModal:hover {
  background: #b80000;
  transform: scale(1.1);
}



@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


@media (max-width: 600px) {

  .proj-stats {
    flex-direction: column;
    gap: 0;
  }

  .proj-stat::after {
    display: none;
  }
  .cert-stats{
    flex-direction: column;
    gap: 0;
  }
  .cert-stat::after {
    display: none;
  }
  .stats-bar{
      flex-direction: column;
      gap: 0;
  }
  .stats-bar::after {
      display: none;
    }
  .proj-header {
    margin-bottom: 40px;
  }
  /* okay */
}

#certCount {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00fff0;
  letter-spacing: 2px;
  font-family: "Courier New", monospace;

  transition: text-shadow 0.2s ease, transform 0.1s ease;
}


.quicklinks-section {
  padding: 90px 5%;
  text-align: center;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00ffe5;
  margin-bottom: 12px;
  display: block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
}

.section-eyebrow.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s 0.1s, transform 0.5s 0.1s;
}

.section-heading.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s 0.2s, transform 0.5s 0.2s;
}

.section-sub.visible {
  opacity: 1;
  transform: translateY(0);
}

.ql-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.ql-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 24px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.35s, box-shadow 0.35s;
  opacity: 0;
  transform: translateY(24px);
}

.ql-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.ql-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-glow, radial-gradient(ellipse at 60% 0%, rgba(0, 255, 229, 0.1) 0%, transparent 70%));
  opacity: 0;
  transition: opacity 0.35s;
}

.ql-card:hover::before {
  opacity: 1;
}

.ql-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 229, 0.3);
  box-shadow: 0 16px 48px rgba(0, 255, 229, 0.15);
  color: #fff;
}

.ql-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--icon-a, #00ffe5), var(--icon-b, #00c9ff));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  color: #000;
  box-shadow: 0 6px 20px rgba(0, 255, 229, 0.25);
}

.ql-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ql-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.ql-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00ffe5;
  margin-top: 16px;
  transition: gap 0.3s;
}

.ql-card:hover .ql-arrow {
  gap: 10px;
}


.marquee-section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  transition: color 0.3s;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-item:hover {
  color: #00ffe5;
  border-color: rgba(0, 255, 229, 0.25);
}

.marquee-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ffe5;
  opacity: 0.5;
}


.site-footer {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(30px);
  border-top: 1px solid rgba(0, 255, 229, 0.12) !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 5% 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #00ffe5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 0.25s;
}

.footer-social-link:hover {
  background: #00ffe5;
  color: #000;
  border-color: #00ffe5;
  box-shadow: 0 0 18px rgba(0, 255, 229, 0.4);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #00ffe5;
  padding-left: 6px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-copy span {
  color: #00ffe5;
}

.footer-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1.5px;
}


@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-strip {
    gap: 0;
  }

  .ql-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .ql-grid {
    grid-template-columns: 1fr;
  }

  .stat-item+.stat-item::before {
    display: none;
  }
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #00ffe5, #b885ff, #00ffe5);
  background-size: 200% 100%;
  z-index: 9999;
  animation: progressGlow 2s linear infinite;
  transition: width 0.1s linear;
}

@keyframes progressGlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ffe5, #b885ff);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 24px rgba(0, 255, 229, 0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
}

#back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 255, 229, 0.5);
}
