* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'poppins', sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden;
  position: relative;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4a6eff;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #4a6eff;
}

html {
  scroll-behavior: smooth;
}






/* Header Container */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: transparent;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 60px;
  border-radius: 5px;
}

/* Navigation Links */
nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #4a6eff;
}

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Animation: Hamburger to X */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 80px;
    right: 30px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 12px;
    flex-direction: column;
    gap: 15px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }

  nav.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }
}








/* Intro Section */
.intro {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 60px;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
  will-change: transform;
}

./* Float animation for avatar */
@keyframes floatAvatar {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-bottom: 20px;
  animation: floatAvatar 4s ease-in-out infinite, avatarGlow 10s ease-in-out infinite;
  transition: transform 0.3s ease;
}

/* Scroll bounce/slide */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.name,
.animated-text,
.subtitle {
  transition: transform 0.3s ease;
}



/* Glow */
@keyframes avatarGlow {
  0% {
    box-shadow: 0 0 5px #fff;
  }
  50% {
    box-shadow: 0 0 25px #fff;
  }
  100% {
    box-shadow: 0 0 5px #fff;
  }
}



/* Parallax on mouse movement */
@media (hover: hover) and (pointer: fine) {
  .intro {
    --rotateX: 0deg;
    --rotateY: 0deg;
  }

  .intro:hover .avatar,
  .intro:hover .name,
  .intro:hover .animated-text {
    transform: perspective(800px) rotateX(var(--rotateX)) rotateY(var(--rotateY));
  }
}





/* Animated Text Container */
.highlight {
  display: inline-block;
  color: #007BFF; /* Blue color */
  font-size: 2.2rem; /* Bigger font */
  font-weight: bold;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpFade 0.8s ease-out forwards;
  animation-play-state: paused; /* Start paused until triggered */
  margin-bottom: 20px
}

.professional {
  animation-delay: 0.3s; /* First word */
}

.journey {
  animation-delay: 1s; /* Second word */
}

.tagline {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 20px; /* Creates gap below tagline */
}

.subtitle {
  font-size: 1rem;
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





.skills-section {
  padding: 80px 20px;
  background: transparent;
  
  border-radius: 12px;
  margin-top: 40px;
}


.section-heading {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 5px;
  text-align: center;
}

.section-tagline {
  font-style: italic;
  color: #ccc;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.skills-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.skill-group {
  background:transparent;
 
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(232, 231, 231, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(142, 133, 133, 0.752);
}

.skill-group h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-group ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 8px;
}
/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Scroll reveal animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.skill-group {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform, opacity;
}

.skill-group.visible {
  animation: fadeInUp 0.8s ease-out forwards;
}













/* Section Headings */
.section-heading {
  font-size: 2rem;
  text-align: center;
  margin: 50px 0 25px;
}






/* Projects Section */
#projects {
  padding: 60px 20px;
  background: transparent; /* Light background */
  text-align: center;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.card {
  background: transparent;
  padding: 55px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(250, 250, 250, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #007bff;
}

.card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(142, 133, 133, 0.752);
}

/* Responsive text size */
@media (max-width: 500px) {
  .section-heading {
    font-size: 1.8rem;
  }
  .card h3 {
    font-size: 1.2rem;
  }
}





 






























footer {
  background: rgba(0, 0, 0, 0.6); /* Light black background with some transparency */
  backdrop-filter: blur(8px); /* Frosted glass effect */
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-info a {
  color: #4a6eff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #fff;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.5rem;
}

.social-icon {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 45%;
  transition: transform 0.3s ease, background 0.3s ease;
  font-size: 1.8rem;
}

.social-icon:hover {
  background: #4a6eff;
  transform: translateY(-4px); /* Smooth hover animation */
}

.social-icon i {
  transition: color 0.3s ease;
}

.social-icon:hover i {
  color: #fff;
}

footer a {
  text-decoration: none;
}

footer a:focus,
footer a:hover {
  outline: none;
}


.footer-signature {
  color: #aaa;
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  margin-top: 15px;
  opacity: 1;
  transition: opacity 1s ease;
}





/* coming soon */
/* Debugged It Myself Section */
.debugged-it-section {
  padding: 60px 20px;
  background: transparent;
}

.section-heading,
.section-tagline {
  color: #fff;
  text-align: center;
}

.debug-cards {
  max-width: 800px;
  margin: 0 auto;
}

.debug-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.debug-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.arrow-icon.rotate {
  transform: rotate(180deg);
}

.debug-content {
  color: #fff;
  padding: 0 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Optional: smoother open padding */
.debug-content.open {
  padding: 15px 20px 20px;
}







.what-i-bring {
  text-align: center;
  padding: 80px 20px;
  background: transparent;
  color: #fff;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.value-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 20px;
  background: transparent;
  border-radius: 15px;
  border: 2px solid #5a5151;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
  text-align: center;
}

.value-card:hover {
  box-shadow: 0 4px 18px rgba(196, 177, 177, 0.752);
}

.value-card .icon {
  font-size: 50px;
  color: #4a90e2;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.carousel-btn i {
  font-size: 24px;
  color: #fff;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.pagination-dots {
  text-align: center;
  margin-top: 20px;
}

.pagination-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #fff;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.pagination-dots .dot.active {
  background-color: #4a90e2;
}

@media screen and (max-width: 768px) {
  .value-card {
    flex: 0 0 90%;
  }

  .value-card .icon {
    font-size: 40px;
  }

  .value-card h3 {
    font-size: 1rem;
  }

  .value-card p {
    font-size: 0.95rem;
  }
}



















.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2e3032, #000000);
  color: #fff;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(0);
  opacity: 1;
}

.floating-cta i {
  font-size: 1rem;
}

/* Hover effect (only applies to devices with hover) */
@media (hover: hover) {
  .floating-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 36px rgb(40, 35, 35);
    background: linear-gradient(135deg, #010b33, #000000);
  }
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .floating-cta {
    bottom: 15px;
    right: 15px;
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .floating-cta i {
    font-size: 0.9rem;
  }
}

















/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .animated-text {
    font-size: 1.6rem;
  }

  .card,
  .experience-card {
    padding: 16px;
  }

  .card-grid,
  .experience-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }
}