* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
a {
  text-decoration: none;
}
body {
  position: relative;
  font-family: sans-serif;
  margin: 0;
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0d0d, #162447, #1f4068);
  height: max-content;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow-y: scroll;
}

/* body::before{
    position: absolute;
    content: "";
    inset: 0;
    background-color: rgba(0, 0, 0, 0.836);
    background-size: cover;
    z-index: -2;
} */
::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

header {
  width: 100vw;
  padding: 0 10vw;
  height: 10vh;
  position: sticky;
  top: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  z-index: 5;
  background-color:#0000004f;
  
}



.logo {
  font-size: 23px;
  font-family: fantasy !important;
  color: white;
}
nav {
  width: 40vw;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}
ul {
  position: relative;
  width: 35vw;
  height: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;

  
  border-radius: 30px;
  z-index: 4;

  transition: all 0.4s ease;
}


ul li {
  display: inline;
  font-size: 18px;
  color: white;
  /* color: rgb(0, 0, 0); */

  font-family: serif !important;
  transition: all 0.5s ease-in-out;
}
ul li a{
  color: white;
}
ul li:hover {
  transform: translateY(4px);
  transform: scale(1.15);
  color: #00d8ff;
}
.connect {
  width: 10vw;

  height: 100%;
  display: grid;
  place-items: center;
}
.connect button {
  width: 9vw;
  height: 70%;
  background-color: #0099cc;
  color: white;
  border-radius: 30px;
  border: none;
  outline: none;
  transition: all 0.5s ease;
}
.connect button:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .connect button {
    width: auto;
    padding: 10px 20px;
  }
}

.hero-section {
  width: 80vw;
  margin: auto;
  /* border: 2px solid blue; */
  height: 80vh;
  margin-top: 50px;
  display: flex;
  flex-direction: row;
}
.intro {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: white;
  gap: 24px;
  padding: 40px;
  text-align: left;
  animation: fadeInUp 1s ease-out;
}

.intro h4 {
  font-size: 20px;
  font-weight: 500;
  color: #00d8ff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro h1 {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.intro p {
  font-size: 18px;
  color: #d1d1d1;
  max-width: 90%;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

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

.hero-image {
  width: 50%;
  height: 100%;
  position: relative;
  display: grid;
  place-items: center;
}
.hero-image img {
  width: 70%;
  height: 80%;
  border: 2px solid rgba(128, 128, 128, 0.196);
  border-radius: 30px;
  box-shadow: 0px 2px 5px rgba(252, 252, 252, 0.2);
}
.floater {
  position: absolute;
  inset: 0;
  /* background-color: aqua; */
}
.box {
  position: absolute;
  width: 150px;
  height: 50px;
  background-color: white;
  border-radius: 10px;
  outline: 2px none;
  border: none;
  box-shadow: 0px 2px 5px rgba(148, 148, 148, 0.2);
  display: grid;
  place-items: center;
  transition: all 0.4s ease-out;
}
.box:hover {
  transform: scale(1.2);
}
.b-one {
  position: absolute;
  bottom: 130px;
  left: 80px;
  animation: rotatorO 2s ease-in infinite, rotator 4s ease-in infinite;
}
.b-one::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 50%;
  top: 3px;
}
@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotatorO {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.b-two {
  top: 130px;
  right: 80px;
}
.b-three {
  top: 160px;
  left: 45px;
}
.b-four {
  bottom: 100px;
  right: 40px;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    height: auto;
  }

  .intro,
  .hero-image {
    width: 100%;
    text-align: center;
  }

  .intro h1 {
    font-size: 28px;
  }

  .floater {
    display: none;
  }
}

.about-section {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: white;
}

/* Main About Container */
.about-container {
  width: 100%;
  margin-bottom: 100px;
  text-align: center;
}

.about-header {
  margin-bottom: 50px;
}

.about-header h2 {
  font-size: 42px;
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  font-weight: 300;
}

.name-highlight {
  font-size: 28px;
  color: #00d8ff;
  font-weight: 600;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0, 216, 255, 0.3);
}

.role-badge {
  display: inline-block;
  background: rgba(0, 216, 255, 0.1);
  border: 1px solid rgba(0, 216, 255, 0.3);
  padding: 8px 20px;
  border-radius: 25px;
  color: #00d8ff;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.about-content {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  text-align: left;

  width: 100%;
  position: relative;
}

.about-text {
  height: 50%;
  width: 45%;
  padding-right: 10px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
  opacity: 0.9;
}

/* Interests Section */
.interests-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-text,
  .education-section {
    width: 100%;
  }
}

.interests-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.interest-card {
  width: 45%;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 216, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.interest-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(0, 216, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 216, 255, 0.2);
}

.card-image {
  height: 100%;
  overflow: hidden;
  position: relative;
}

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

.interest-card:hover .card-image img {
  transform: scale(1.1);
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.8), transparent);
}

.card-content {
  padding: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 2;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  text-align: center;
}

.card-content h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-content p {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Education Timeline */

.education-section {
  margin-top: 130px;
  width: 55%;
  border-left: 2px solid white;
}

.education-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.timeline {
  position: relative;
  height: 100vh;
  margin: 0 auto;
  max-width: 800px;
}

.timeline-card {
  /* background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 216, 255, 0.2);
            border-radius: 15px; */
  padding: 20px;
  min-width: 95%;
  text-align: center;
  transition: all 0.3s ease;
  height: 200px;
  position: relative;
}
.timeline-card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 30%;
  right: 70%;
  background-color: rgba(255, 255, 255, 0.527);
  height: 2px;
}
.timeline-card::before:hover {
  background-color: white;
}
/* .timeline-card:hover {
            transform: translateY(-5px) scale(1.05);
            background: rgba(0, 216, 255, 0.1);
            border-color: rgba(0, 216, 255, 0.4);
            box-shadow: 0 10px 30px rgba(0, 216, 255, 0.2);
        } */

.timeline-card h3 {
  color: #00d8ff;
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-card p {
  color: #e0e0e0;
  font-size: 14px;
  margin-bottom: 10px;
}

.timeline-card .year {
  color: #888;
  font-size: 12px;
  font-weight: bold;
}
.skills-section {
  width: 80vw;
  max-width: 1200px;
  margin: 100px auto;
  padding: 60px 20px;
  color: white;
}

.skills-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.skills-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left Side: Skills Categories */
.skills-categories {
  flex: 1;
  min-width: 400px;
}

.skills-categories h3 {
  font-size: 24px;
  color: #00d8ff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.skills-categories h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  border-radius: 2px;
}

.category-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 216, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 216, 255, 0.08),
    transparent
  );
  transition: left 0.6s ease;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateX(10px);
  border-color: rgba(0, 216, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 216, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.category-icon {
  font-size: 48px;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 216, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(0, 216, 255, 0.2);
}

.category-content h4 {
  color: #00d8ff;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.category-content p {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.category-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(0, 216, 255, 0.1);
  border: 1px solid rgba(0, 216, 255, 0.2);
  padding: 4px 12px;
  border-radius: 15px;
  color: #00d8ff;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(0, 216, 255, 0.2);
  transform: translateY(-2px);
}

/* Right Side: Tools Container */
.tools-container {
  flex: 1;
  min-width: 400px;
  margin-top: 20%;
}

.tools-container h3 {
  font-size: 24px;
  color: #00d8ff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.tools-container h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  border-radius: 2px;
}

.bubbles-container {
  width: 100%;
  height: 500px;
  position: relative;
  border: 2px solid rgba(0, 216, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.skill-bubble {
  position: absolute;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.skill-bubble:hover {
  transform: scale(1.2) !important;
  box-shadow: 0 15px 35px rgba(0, 216, 255, 0.3);
  animation-play-state: paused;
  z-index: 10;
}

/* Bubble Colors and Positions */
.js-bubble {
  background: linear-gradient(45deg, #f7df1e, #e6cc1a);
  color: #000;
  top: 15%;
  left: 8%;
  animation: bounce1 3s infinite, float1 6s infinite;
}

.python-bubble {
  background: linear-gradient(45deg, #3776ab, #ffd43b);
  top: 55%;
  right: 12%;
  animation: bounce2 2.5s infinite, float2 5s infinite;
}

.java-bubble {
  background: linear-gradient(45deg, #ed8b00, #5382a1);
  top: 8%;
  right: 20%;
  animation: bounce3 4s infinite, float3 7s infinite;
}

.cpp-bubble {
  background: linear-gradient(45deg, #00599c, #004482);
  bottom: 18%;
  left: 15%;
  animation: bounce4 3.5s infinite, float4 5.5s infinite;
}

.react-bubble {
  background: linear-gradient(45deg, #61dafb, #21232a);
  top: 35%;
  left: 3%;
  animation: bounce5 2.8s infinite, float5 6.2s infinite;
}

.html-bubble {
  background: linear-gradient(45deg, #e34f26, #f06529);
  top: 68%;
  left: 35%;
  animation: bounce6 3.2s infinite, float6 5.8s infinite;
}

.css-bubble {
  background: linear-gradient(45deg, #1572b6, #33a9dc);
  top: 12%;
  left: 40%;
  animation: bounce7 2.7s infinite, float7 6.5s infinite;
}

.vue-bubble {
  background: linear-gradient(45deg, #4fc08d, #34495e);
  bottom: 25%;
  right: 25%;
  animation: bounce8 3.8s infinite, float8 5.2s infinite;
}

.node-bubble {
  background: linear-gradient(45deg, #339933, #68cc00);
  top: 45%;
  right: 3%;
  animation: bounce9 2.9s infinite, float9 6.8s infinite;
}

.express-bubble {
  background: linear-gradient(45deg, #000000, #404040);
  bottom: 8%;
  left: 45%;
  animation: bounce10 3.6s infinite, float10 5.4s infinite;
}

.django-bubble {
  background: linear-gradient(45deg, #092e20, #0c4b33);
  top: 22%;
  left: 65%;
  animation: bounce11 2.4s infinite, float11 6.9s infinite;
}

.php-bubble {
  background: linear-gradient(45deg, #777bb4, #8892bf);
  bottom: 45%;
  left: 30%;
  animation: bounce12 3.7s infinite, float12 5.1s infinite;
}

.mongo-bubble {
  background: linear-gradient(45deg, #47a248, #4db33d);
  top: 30%;
  right: 35%;
  animation: bounce13 2.6s infinite, float13 6.3s infinite;
}

.mysql-bubble {
  background: linear-gradient(45deg, #4479a1, #f29111);
  bottom: 35%;
  right: 8%;
  animation: bounce14 3.3s infinite, float14 5.7s infinite;
}

.git-bubble {
  background: linear-gradient(45deg, #f05032, #de4c36);
  top: 75%;
  right: 40%;
  animation: bounce15 2.1s infinite, float15 6.6s infinite;
}

.docker-bubble {
  background: linear-gradient(45deg, #2496ed, #0db7ed);
  top: 3%;
  left: 75%;
  animation: bounce16 3.9s infinite, float16 5.3s infinite;
}

.figma-bubble {
  background: linear-gradient(45deg, #f24e1e, #a259ff);
  bottom: 55%;
  right: 55%;
  animation: bounce17 2.3s infinite, float17 6.1s infinite;
}

.aws-bubble {
  background: linear-gradient(45deg, #ff9900, #232f3e);
  bottom: 12%;
  right: 22%;
  animation: bounce18 3.4s infinite, float18 5.9s infinite;
}

.tailwind-bubble {
  background: linear-gradient(45deg, #06b6d4, #0891b2);
  top: 40%;
  left: 20%;
  animation: bounce19 2.8s infinite, float19 6.4s infinite;
}

.bootstrap-bubble {
  background: linear-gradient(45deg, #7952b3, #563d7c);
  bottom: 65%;
  left: 55%;
  animation: bounce20 3.1s infinite, float20 5.6s infinite;
}


/* Bounce Animations */
@keyframes bounce1 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes bounce2 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-22px);
  }
}
@keyframes bounce3 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes bounce4 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}
@keyframes bounce5 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes bounce6 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes bounce7 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-24px);
  }
}
@keyframes bounce8 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes bounce9 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-21px);
  }
}
@keyframes bounce10 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-17px);
  }
}
@keyframes bounce11 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-23px);
  }
}
@keyframes bounce12 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes bounce13 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-19px);
  }
}
@keyframes bounce14 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-21px);
  }
}
@keyframes bounce15 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-26px);
  }
}
@keyframes bounce16 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes bounce17 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-27px);
  }
}
@keyframes bounce18 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes bounce19 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-22px);
  }
}
@keyframes bounce20 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}

/* Float Animations */
@keyframes float1 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(12px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-18px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(8px);
  }
}
@keyframes float4 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-12px);
  }
}
@keyframes float5 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
}
@keyframes float6 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-8px);
  }
}
@keyframes float7 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(15px);
  }
}
@keyframes float8 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-20px);
  }
}
@keyframes float9 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes float10 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
}
@keyframes float11 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(18px);
  }
}
@keyframes float12 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-10px);
  }
}
@keyframes float13 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(14px);
  }
}
@keyframes float14 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-18px);
  }
}
@keyframes float15 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(6px);
  }
}
@keyframes float16 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-14px);
  }
}
@keyframes float17 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(16px);
  }
}
@keyframes float18 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-6px);
  }
}
@keyframes float19 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(12px);
  }
}
@keyframes float20 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-12px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .skills-layout {
    flex-direction: column;
    gap: 50px;
  }

  .skills-categories,
  .tools-container {
    min-width: auto;
    width: 100%;
  }

  .bubbles-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .skills-section {
    width: 90vw;
    padding: 40px 15px;
  }

  .skills-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .category-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .bubbles-container {
    height: 350px;
  }

  .skill-bubble {
    padding: 8px 12px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .skills-section {
    width: 95vw;
    padding: 30px 10px;
  }

  .skills-section h2 {
    font-size: 24px;
  }

  .skills-categories h3,
  .tools-container h3 {
    font-size: 20px;
  }

  .category-card {
    padding: 20px;
  }

  .category-icon {
    font-size: 36px;
    width: 60px;
    height: 60px;
  }

  .bubbles-container {
    height: 300px;
  }
}
.projects-section {
  width: 80vw;
  max-width: 1200px;
  margin: 100px auto;
  padding: 60px 20px;
  color: white;
}

.projects-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 216, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 216, 255, 0.08),
    transparent
  );
  transition: left 0.6s ease;
}

.project-card:hover::before {
  left: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 216, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 216, 255, 0.2),
    0 0 15px rgba(0, 216, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.project-header h4 {
  color: #00d8ff;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.live {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.development {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-badge.completed {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.project-description {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.project-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.tech-tag {
  background: rgba(0, 216, 255, 0.1);
  border: 1px solid rgba(0, 216, 255, 0.2);
  padding: 4px 12px;
  border-radius: 15px;
  color: #00d8ff;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(0, 216, 255, 0.2);
  transform: translateY(-2px);
}

.project-links {
  display: flex;
  gap: 12px;
}
.project-links a {
  color: white;
}

.project-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-btn.primary {
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  color: white;
}

.project-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 216, 255, 0.4);
}

.project-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .projects-section {
    width: 90vw;
    padding: 40px 15px;
  }

  .projects-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .timeline-card::before {
    position: absolute;
    content: "";
    left: 0;
    top: 30%;
    right: 80%;
    background-color: rgba(255, 255, 255, 0.527);
    height: 2px;
  }
  .projects-section {
    width: 95vw;
    padding: 30px 10px;
  }

  .projects-section h2 {
    font-size: 24px;
  }

  .project-card {
    padding: 20px;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .project-links {
    flex-direction: column;
  }
}
/* Contact Section */
.contact-section {
  width: 80vw;
  max-width: 1200px;
  margin: 100px auto;
  padding: 60px 20px;
  color: white;
}

.contact-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.contact-subtitle {
  text-align: center;
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 60px;
  opacity: 0.9;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 216, 255, 0.2);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 35px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 23px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(0, 216, 255, 0.3);
  border-radius: 15px;
  color: white;
  font-size: 16px;
  transition: all 0.4s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d8ff;
  box-shadow: 0 0 25px rgba(0, 216, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.form-group label {
  position: absolute;
  left: 25px;
  top: 18px;
  color: #aaa;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -12px;
  left: 20px;
  font-size: 12px;
  color: #00d8ff;
  background: #1a1a2e;
  padding: 2px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 216, 255, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  box-shadow: 0 8px 20px rgba(0, 216, 255, 0.25);
}
.submit-btn img {
  width: 25px;
  height: 25px;
  margin-top: 8px;
}
.btn-text {
  text-align: center;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 216, 255, 0.4);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 45px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 216, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(5px);
  border-color: rgba(0, 216, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.info-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  border: 1px solid rgba(0, 216, 255, 0.2);
}

.info-icon img {
  width: 40px;
  height: 40px;
}
.info-content h4 {
  color: #00d8ff;
  font-size: 16px;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.info-content p {
  color: #e0e0e0;
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.availability {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 216, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.availability h4 {
  color: #00d8ff;
  font-size: 16px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.availability p {
  color: #e0e0e0;
  font-size: 14px;
  margin: 0 0 15px 0;
  opacity: 0.9;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #22c55e;
  font-size: 14px;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Footer Section */
.footer-section {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(0, 216, 255, 0.15);
  margin-top: 120px;
  padding: 80px 0 40px;
  color: white;
}

.footer-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo h3 {
  font-size: 32px;
  margin: 0 0 8px 0;
  background: linear-gradient(45deg, #00d8ff, #0099cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.footer-logo p {
  color: #999;
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-description {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

.social-links h4 {
  color: #00d8ff;
  font-size: 22px;
  margin: 0 0 30px 0;
  font-weight: 600;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 216, 255, 0.2);
  border-radius: 15px;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 15px;
  font-weight: 500;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(0, 216, 255, 0.4);
  background: rgba(0, 216, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 216, 255, 0.2);
}

.social-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.962);
  border-radius: 10px;
  border: 1px solid rgba(0, 216, 255, 0.3);
}
.social-icon img {
  width: 70%;
  height: 70%;
}

.footer-bottom {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 216, 255, 0.3),
    transparent
  );
  margin: 40px 0 30px;
}

.footer-credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #888;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00d8ff;
}

/* Responsive Design */

@media (max-width: 768px) {
  .contact-section {
    width: 90vw;
    padding: 40px 15px;
  }

  .contact-section h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 30px;
  }

  .footer-content {
    width: 90vw;
    padding: 0 15px;
  }

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

  .footer-credits {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    gap: 20px;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  header{
    display: flex;
    flex-direction: column;
    height: 15vh;
    justify-content: space-around;
    
  }
  .connect{
   position: absolute;
   top: 3px;
   right: 10px;
  }
  
  .nav-menu ul {
    width: 100%;
    height: 30vh;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-around;

  }
  .intro h4 {
    font-size: 16px;
    font-weight: 600;
  }
  .intro h1 {
    font-size: 20px;
    font-weight: 600;
    text-align: start;
  }
  .intro p {
    font-size: 16px;
    font-weight: 300;
    text-align: start;
  }
  .about-container h2 {
    font-size: 22px;
    font-weight: 700;
  }
  .about-text p {
    font-size: 16px;
  }
  .about-container h3 {
    font-size: 18px;
    font-weight: 500;
  }
  .interests-section h2 {
    font-size: 22px;
    font-weight: 400;
  }
  .interest-card {
    width: 46%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
  }
  .interest-card h3 {
    font-size: 15px;
    width: 100%;
  }
  .interest-card p {
    width: 96%;
    font-size: 13px;
    text-align: start;
  }

  .logo h1 {
    font-size: 20px;
  }
  .nav-menu {
    width: 90vw;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom:30px;
    
  }

  .connect {
    display: none;
  }
  .education-section {
    margin-top: 80px;
    width: 80vw;
    margin-bottom: 80px;
  }
  .education-section h2 {
    font-size: 20px;
    font-weight: 400;
  }
  .education-section h3 {
    font-size: 15px;
    font-weight: 400;
  }
  .education-section h4 {
    font-size: 16px;
  }
  .education-section p {
    font-size: 14px;
  }
  .project-btn {
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
  }
  .project-header h4 {
    font-size: 16px;
    font-weight: 500;
  }
  .category-content h4 {
    font-size: 16px;
    font-weight: 600;
  }
  .category-content p {
    font-size: 14px;
  }
  .category-card {
    position: relative;
    padding: 5px;
    height: 30vh;
    display: grid;
    place-items: center;
  }
  .category-icon {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 50px;
  }

  .submit-btn {
    height: 50px;
  }
  .btn-text {
    font-size: 15px;
  }
  .info-card {
    height: 90px;
  }
  .availability {
    height: 120px;
    display: grid;
    place-items: center center;
  }
  .info-icon {
    width: 40px;
    height: 40px;
  }
  .info-icon img {
    height: 30px;
    width: 30px;
  }
  .footer-content h3 {
    font-size: 18px;
  }
  .footer-content .footer-logo p {
    font-size: 16px;
  }
  .footer-description p {
    font-size: 12px;
  }
  .social-links h4 {
    font-size: 19px;
  }
  .social-grid {
    display: flex;
    width: 80vw;
    margin: auto;
    align-items: center;
    justify-content: center;
  }

  .social-link {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
  }
  .social-link span {
    position: absolute;
    top: -25px;
    font-size: 13px;
    text-align: center;
    width: 90%;
    opacity: 0;
  }
  .social-link span:hover {
    opacity: 1;
  }
  .social-icon {
    background-color: transparent;
    width: 35px;
    height: 35px;
    border: none;
  }
  .social-icon img {
    width: inherit;
    height: inherit;
  }
  .contact-section {
    width: 95vw;
    padding: 30px 10px;
  }

  .contact-section h2 {
    font-size: 24px;
  }

  .contact-form {
    padding: 25px;
    width: 80vw;
    margin: auto;
  }
  .contact-info{
    width: 80vw;
    margin: auto;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .footer-content {
    width: 95vw;
    padding: 0 10px;
  }

  .footer-section {
    padding: 40px 0 20px;
  }
  .footer-content{
    display: flex;
    flex-direction: column;
  }
  .social-grid{
    width: 80vw;
  
  }
  .contact-container{
    display: flex;
    flex-direction:column ;
  }
}
n img {
    width: inherit;
    height: inherit;
  }
  .contact-section {
    width: 95vw;
    padding: 30px 10px;
  }

  .contact-section h2 {
    font-size: 24px;
  }

  .contact-form {
    padding: 25px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .footer-content {
    width: 95vw;
    padding: 0 10px;
  }

.footer-section {
  padding: 40px 0 20px;
}
