body {
    background-color: black;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    margin: 0;
}

html {
  scroll-behavior: smooth;
}

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 300px;
    height: 100%;
}

.name {
    color: white;
    font-size: 60px;
    width: 1000px;
    letter-spacing: -1px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.short-description {
    color: #9C9C9C;
    font-size: 25px;
    letter-spacing: -1px;
    width: 1300px;
    margin-top: 6px;
}

.intro-buttons {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.portfolio-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    width: 100px;
    height: 30px;
    background-color: white;
    color: black;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.5s ease;
}

.portfolio-button:hover {
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.27);
}

.portfolio-button p {
    margin: 0;
    text-align: center;
}

.connect-button {
  display: flex;
  align-items: center; 
  justify-content: center;
  padding: 12px 24px;
  width: 100px;
  height: 30px;
  background-color: #68AB95;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 15px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s ease;
  backdrop-filter: blur(8px);
  transform: all 0.5s ease;
}

.connect-button:hover {
  box-shadow: 0 0 28px rgba(99, 228, 185, 0.27);
}

.connect-button p {
    text-align: center;
    max-width: 300px;
    align-items: center;
    justify-content: center;
}

.ray {
    position: absolute;
    width: 2px;
    height: 700px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    opacity: 1;
    transform-origin: bottom center;
}

.light-rays-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pfp {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2px;
  border: 2px solid #000000;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease;
}

.pfp:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: #0e0e0e;
}

.about-me {
    padding-top: 450px;
    color: white;
}

.floating-nav {
    position: fixed;
    top: 40px;
    display: flex;
    align-items: center;
    width: 1080px;
    justify-content: center;
    z-index: 100;
    font-family: 'Poppins', sans-serif;
}

.nav-links {
    display: flex;
    gap: 20px;
    width: 40%;
    height: 50px;
    background-color: rgba(30, 30, 40, 0,1);
    backdrop-filter: blur(12px);
    padding: 8px 20px;
    border-radius: 60px;
    border: 1.6px solid #1a1a1a; 
    box-shadow: 5px rgba(143, 143, 143);
    margin-left: 818px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin-left: 10px;
    position: relative;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    color: #fff;
    border-radius: 2px;
}

.nav-links a.active {
    color: #fff;
}

.about-me {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 800px;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 0;
    padding-top: 450px;
    min-height: 60vh;
    color: white;
}

.abt-me-title {
    font-size: 15px;
    font-weight: 500;
    color: #707070;
    text-align: center;
    letter-spacing: 2px;
    margin: 0 0 12px;
}

.about-me-par {
    color: #5e5e5e;
    font-size: 15px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.languages {
    display: flex;
    gap: 30px;
    padding-top: 20px;
}

.language {
    width: 50px;
    gap: 50px;
    height: 50px;
    transition: transform 0.4s ease;
}

.language:hover {
    transform: scale(1.15);
}

.experienced-title {
    padding-top: 100px;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeSlideUp 0.9s ease-out both;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.5s; }
.animate-delay-3 { animation-delay: 0.8s; }

.portfolio-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 300px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.portfolio-title {
  font-size: 18px;
  font-weight: 500;
  color: #707070;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.portfolio-subtitle {
  color: #5e5e5e;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.project-card {
  background-color: rgba(25, 25, 25, 0.7);
  border: 1px solid #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  width: 340px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  backdrop-filter: blur(8px);
}

.project-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #1a1a1a;
}

.footer {
    background-color: #000;
    padding: 60px 20px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.copyright {
    color: rgba(150, 150, 150, 0.7);
    font-family: 'Poppins', sans-serif;
}

.footer-divider {
    height: 1px;
    width: 100%;
    background-color: #1b1b1b;
    margin-bottom: 40px;
}

.project-info {
  padding: 20px;
}

.project-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.project-description {
  font-size: 14px;
  color: #8f8f8f;
  line-height: 1.4;
  margin-bottom: 20px;
}

.project-link {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #68AB95;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: #7fcbb0;
}

.animate-delay-1 { animation-delay: 0.3s; }
.animate-delay-2 { animation-delay: 0.6s; }
.animate-delay-3 { animation-delay: 0.9s; }

@media (max-width: 768px) {
    .intro, .about-me, .portfolio-section {
        width: 90%;
        padding-top: 200px;
        margin: 0 auto;
    }

    .name {
        font-size: 36px;
        width: 100%;
    }

    .short-description {
        font-size: 18px;
        width: 100%;
    }

    .intro-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .portfolio-button, .connect-button {
        width: 150px;
        height: 40px;
        font-size: 14px;
    }

    .floating-nav {
        width: 95%;
        margin-left: 0;
        top: 20px;
    }

    .nav-links {
        width: 100%;
        gap: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .languages {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .language {
        width: 40px;
        height: 40px;
    }

    .project-card {
        width: 90%;
    }

    .project-title {
        font-size: 16px;
    }

    .project-description {
        font-size: 13px;
    }

    .portfolio-subtitle {
        font-size: 14px;
        max-width: 90%;
    }

    .abt-me-title {
        font-size: 14px;
    }

    .about-me-par {
        font-size: 14px;
        max-width: 90%;
    }
}