/* Modern Portfolio Styles with Glassmorphism */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Hero Actions Styles */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.profile-pic-container {
  position: relative;
}



@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  

  

}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(99, 242, 200, 0.3); }
  50% { box-shadow: 0 0 40px rgba(99, 242, 200, 0.6); }
}



* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(-45deg, #000000, #000000, #0a0a0a, #222925);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: #ffffff;
  min-height: 100vh;
  width: 100vw;
  line-height: 1.6;
}

/* Glassmorphism effect */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

/* Header */
header {
  background: rgba(10, 10, 10, 0.3);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100vw;
  max-width: 100vw;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 1rem 2rem;
}

.logo {
  color: #63f2c8;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-shadow: 0 0 20px rgba(0, 255, 179, 0.699);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.logo-text {
  color: #63f2c8;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(0, 255, 179, 0.699);
}

.logo:hover {
  color: #00ff99;
  text-shadow: 0 0 30px rgba(0, 255, 153, 0.8);
  transform: scale(1.05);
}

.logo:hover .logo-img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.logo:hover .logo-text {
  color: #00ff99;
  text-shadow: 0 0 30px rgba(0, 255, 153, 0.8);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: .5 rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  position: relative;
  padding: 0.5rem 1.1rem;
  outline: none;
  border-radius: 18px;
}

.nav-links li a:focus {
  outline: none;
}

.nav-links li a.active,
.nav-links li a:hover {
  background: rgba(0,255,153,0.13);
  color: #00ffd0;
  box-shadow: 0 2px 12px 0 rgba(0,255,153,0.10);
}

/* Remove underline animation */
.nav-links li a::after,
.nav-links li a:hover::after,
.nav-links li a.active::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  transition: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
  outline: none;
}

.nav-toggle:focus {
  outline: none;
}

.nav-toggle:hover {
  outline: none;
}

.nav-toggle:active {
  outline: none;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: #63f2c8;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: #63f2c8;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Active hamburger animation */
.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  padding: 0;
  margin: auto;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border: none;
  outline: none;
  background-clip: border-box;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 242, 200, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  background-size: 100% 100%;
  background-position: center;
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 4rem;
  position: relative;
  z-index: 1;
  border: none;
  outline: none;
  background: transparent;
}

.hero-image {
  flex: 0 0 350px;
  order: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-left: 2rem;
}

.profile-pic {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(99, 242, 200, 0.3);
  box-shadow: 0 0 30px rgba(99, 242, 200, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.profile-pic:hover {
  transform: scale(1.05);
  border-color: rgba(0, 255, 208, 0.962);
  box-shadow: 0 0 50px rgb(0, 255, 213);
  filter: brightness(1.1) contrast(1.05);
}

.profile-pic::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: conic-gradient(from 0deg, transparent, rgba(99, 242, 200, 0.2), transparent, rgba(0, 212, 255, 0.2), transparent);
  border-radius: 50%;
  z-index: -1;
  animation: rotateLight 6s linear infinite;
}

.profile-pic::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: conic-gradient(from 180deg, transparent, rgba(99, 242, 200, 0.15), transparent, rgba(0, 212, 255, 0.15), transparent);
  border-radius: 50%;
  z-index: -1;
  animation: rotateLight 4s linear infinite reverse;
}

.profile-pic-container {
  position: relative;
}

.profile-pic-container::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  background: conic-gradient(from 90deg, transparent, rgba(99, 242, 200, 0.1), transparent, rgba(0, 212, 255, 0.1), transparent);
  border-radius: 50%;
  z-index: -2;
  animation: rotateLight 8s linear infinite;
}

.profile-pic-container::after {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: -16px;
  bottom: -16px;
  background: conic-gradient(from 270deg, transparent, rgba(99, 242, 200, 0.08), transparent, rgba(0, 212, 255, 0.08), transparent);
  border-radius: 50%;
  z-index: -3;
  animation: rotateLight 10s linear infinite reverse;
}

@keyframes rotateLight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
}
}

.hero-text {
  flex: 1;
  text-align: left;
  position: static;
  order: 2;
  border: none;
  outline: none;
  background: transparent;
  margin-right: 2rem;
  max-width: 900px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
  line-height: 1.1;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
}

.letter {
  transition: all 0.3s ease;
  cursor: default;
  display: inline-block;
  color: #ffffff;
}

.letter:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 0 20px rgba(99, 242, 200, 0.8);
  transform: scale(1.1);
}

.hero h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  margin: 0 0 1.5rem 0;
  color: #63f2c8;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: subtitleGlow 3s ease-in-out infinite alternate;
  text-shadow: 0 0 10px rgba(99, 242, 200, 0.3);
  position: relative;
}

@keyframes subtitleGlow {
  0% {
    text-shadow: 0 0 10px rgba(99, 242, 200, 0.3);
    color: #63f2c8;
  }
  100% {
    text-shadow: 0 0 20px rgba(99, 242, 200, 0.6);
    color: #ffffff;
  }
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width:600px;
  text-align: justify;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #63f2c8, #00d4ff);
  color: #0a0a0a;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(99, 242, 200, 0.3);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(99, 242, 200, 0.5);
  background: linear-gradient(135deg, #00d4ff, #63f2c8);
}

.btn-small {
  padding: 0.5rem 1.2rem;
  font-size: 0.92rem;
  border-radius: 30px;
  margin-bottom: 0.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 1.2rem 1.2rem 1.2rem 0;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0;
  justify-content: center;
  align-items: center;
}

.social-links a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 0.8rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: rgba(99, 242, 200, 0.3);
  border-color: #63f2c8;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(99, 242, 200, 0.4);
}

.social-links a:hover svg {
  fill: #ffffff;
  filter: brightness(1.2);
}

.social-links svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

/* Sections */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 3rem;
  margin-top: 0;
  background: linear-gradient(135deg, #63f2c8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  justify-content: flex-start;
  align-self: flex-start;
}

section h2 svg {
  margin-right: 15px;
  filter: drop-shadow(0 0 10px rgba(99, 242, 200, 0.3));
}

/* About Section */
.about {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  margin: 2rem auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  flex: 0 0 300px;
}

.about-pic {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.about-pic:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 80px rgba(99, 242, 200, 0.2);
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 1.5rem;
}

.about-text li::before {
  content: '▸';
  color: #63f2c8;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Skills Section */
.skills {
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.skill-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.skill-card:hover {
  transform: translateY(-10px);
  background: rgba(99, 242, 200, 0.1);
  border-color: rgba(99, 242, 200, 0.3);
  box-shadow: 0 20px 40px rgba(99, 242, 200, 0.2);
}

.skill-card svg {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  color: #63f2c8;
}

.skill-card:hover svg {
  transform: scale(1.1);
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(99, 242, 200, 0.5));
}

.skill-card span {
  display: block;
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}

/* Projects Section */


/* Wide Project Card Layout */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0;
}

.project-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: rgba(30, 40, 50, 0.85);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(99,242,200,0.10);
  min-height: 180px;
  border-left: 4px solid #63f2c8;
  padding: 0;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
}

.project-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(99,242,200,0.18);
  border-left: 4px solid #afffec;
}

.project-header {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 18px 0 0 18px;
  overflow: hidden;
  padding: 0;
  min-height: 180px;
  height: 100%;
}

.project-header-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 18px 0 0 18px;
  margin-bottom: 0;
  box-shadow: none;
  background: rgba(255,255,255,0.08);
  display: block;
}

.project-header-slideshow {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: rgba(255,255,255,0.08);
  margin-bottom: 0;
  display: block;
}
.project-header-slideshow .slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.4,1.5,.5,1);
  z-index: 1;
  border-radius: 18px 18px 0 0;
  display: block;
}
.project-header-slideshow .slide.active {
  opacity: 1;
  z-index: 2;
}

.project-body {
  flex: 1;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  margin-right: -150px;
}

.project-body h3 {
  max-width: 900px;

  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #63f2c8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: left;
}

.project-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.08rem;
  color: #63f2c8;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.project-body p {
  color: #e0e0e0;
  font-size: 0.97rem;
  margin: 0 0 0.7rem 0;
}

.project-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.project-techs span {
  background: rgba(99, 242, 200, 0.10);
  color: #63f2c8;
  font-size: 0.78rem;
  padding: 0.18rem 0.7rem;
  border-radius: 10px;
  font-weight: 500;
}

.project-doc-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #63f2c8;
  font-size: 0.93rem;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-end;
  transition: color 0.2s;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  background: none ;
  border: none !important;
  outline: none !important;
}

.project-doc-link:hover, .project-doc-link:active {
  color: #6af0b3db;
  background: none !important;
  border: none !important;
  outline: none !important;
  text-shadow: 0 0 8px #63f2c8, 0 0 16px #63f2c8;
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.project-link:hover {
  transform: translateY(-5px);
}

.project-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 1.1rem 0.7rem 0.7rem 0.7rem;
  min-height: 210px;
  aspect-ratio: 1 / 1;
  position: relative;
}

.project-item:hover {
  background: rgba(99, 242, 200, 0.05);
  border-color: rgba(99, 242, 200, 0.2);
  box-shadow: 0 20px 40px rgba(99, 242, 200, 0.1);
}

.project-img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 0.7rem;
}

.project-item:hover .project-img {
  transform: scale(1.05);
}

.project-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.project-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.project-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
}

.project-tech span {
  color: #63f2c8;
  padding: 0 0.4rem;
  border-radius: 0;
  font-size: 0.75rem;
  background: none;
  border: none;
}

.btn-small {
  font-size: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 30px;
  margin-top: auto;
  align-self: flex-end;
  position: static;
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  text-align: center;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: left;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 242, 200, 0.3);
  box-shadow: 0 10px 30px rgba(99, 242, 200, 0.2);
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(99, 242, 200, 0.2), rgba(0, 212, 255, 0.2));
  border-radius: 12px;
  color: #63f2c8;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, rgba(99, 242, 200, 0.3), rgba(0, 212, 255, 0.3));
  transform: scale(1.1);
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details a {
  color: #63f2c8;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  word-break: break-all;
}

.contact-details a:hover {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Contact Responsive Styles */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-item {
    padding: 1.25rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  
  .contact-details h3 {
    font-size: 1rem;
  }
  
  .contact-details a {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-grid {
    gap: 1rem;
  }
  
  .contact-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .contact-icon {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
  
  .contact-details h3 {
    font-size: 0.9rem;
  }
  
  .contact-details a {
    font-size: 0.85rem;
  }
}

/* Footer */
footer {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  text-align: center;
  padding: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 2rem;
  }
  
  .hero-image {
    margin-left: 0;
    margin-bottom: 2rem;
  }
  
  .hero-text {
    margin-right: 0;
    max-width: 100%;
  }
  
  .about-content,
  .contact-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .project-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 1rem;
  }
  
  .logo-img {
    width: 28px;
    height: 28px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-toggle {
    display: block;
  }
  
  section,
  .about,
  .skills,
  .certificates,
  .projects,
  .contact {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding-left: 0;
    padding-right: 0;
  }
  
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero {
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .logo-img {
    width: 24px;
    height: 24px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .project-list {
    gap: 2rem;
  }
  
  section,
  .about-content,
  .contact-content {
    padding: 2rem 1rem;
  }
  
  footer {
    padding: 1.5rem;
  }
  
  .hero-image {
    flex: 0 0 180px;
  }
  
  .profile-pic {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-size: cover;
    background-position: center;
  }
  
  .hero::before {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 480px) {
  .hero {
    background-size: cover;
    background-position: center;
  }
  
  .hero::before {
    background-size: cover;
    background-position: center;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #63f2c8, #00d4ff);
  border-radius: 4px;
}

/* Animation classes */


/* Floating particles effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(99, 242, 200, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: lightMove 20s ease-in-out infinite;
}

@keyframes lightMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-10px, -10px) scale(1.1);
  }
  50% {
    transform: translate(10px, -5px) scale(0.9);
  }
  75% {
    transform: translate(-5px, 10px) scale(1.05);
  }
}

/* Smooth animations for all elements */
body,
.hero-content,
.hero-image,
.hero-text,
section,
.about-content,
.skills-grid,
.project-list,
.contact-content {
  animation: fadeInUp 0.6s ease-out;
}

/* Certificates Section */


.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.certificate-card:hover {
  transform: translateY(-5px);
  background: rgba(99, 242, 200, 0.1);
  border-color: rgba(99, 242, 200, 0.3);
  box-shadow: 0 15px 35px rgba(99, 242, 200, 0.2);
}

.certificate-icon {
  flex-shrink: 0;
  color: #63f2c8;
  transition: all 0.3s ease;
}

.certificate-card:hover .certificate-icon {
  color: #ffffff;
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(99, 242, 200, 0.5));
}

.certificate-info {
  flex: 1;
}

.certificate-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.certificate-info p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
}

.certificate-date {
  display: inline-block;
  background: rgba(99, 242, 200, 0.2);
  color: #63f2c8;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(99, 242, 200, 0.3);
}

.certificate-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.85);
  color: #63f2c8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  z-index: 2;
}

.certificate-overlay-box {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(99, 242, 200, 0.18);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(99,242,200,0.10);
  min-width: 220px;
  max-width: 300px;
  margin-top: 0.5rem;
  text-align: left;
  opacity: 0.85;
  transition: opacity 0.3s, box-shadow 0.3s, transform 0.3s;
}

.certificate-overlay h4 {
  margin: 0 0 0.7rem 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.certificate-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.certificate-overlay li {
  color: #63f2c8;
  font-size: 1rem;
  margin: 0.3rem 0;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: none;
  display: block;
}

.certificate-overlay li:last-child {
  margin-bottom: 0;
}

.certificate-card:hover .certificate-overlay,
.certificate-card:focus-within .certificate-overlay {
  opacity: 1;
  pointer-events: auto;
}

.certificate-card:hover .certificate-overlay-box,
.certificate-card:focus-within .certificate-overlay-box {
  opacity: 1;
  box-shadow: 0 0 12px 2px #63f2c8, 0 4px 24px rgba(99,242,200,0.10);
  transform: scale(1.02);
}

/* Project Detail Pages */
.project-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
}



.project-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #63f2c8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.project-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.project-date, .project-role {
  background: rgba(99, 242, 200, 0.1);
  color: #63f2c8;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 500;
  border: 1px solid rgba(99, 242, 200, 0.2);
}

.project-content {
  display: grid;
  gap: 3rem;
}

.project-overview, .project-tech, .project-documentation, .project-results {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.project-overview:hover, .project-tech:hover, .project-documentation:hover, .project-results:hover {
  background: rgba(99, 242, 200, 0.05);
  border-color: rgba(99, 242, 200, 0.2);
  transform: translateY(-2px);
}

.project-overview h2, .project-tech h2, .project-documentation h2, .project-results h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #63f2c8;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.project-overview h2::before, .project-tech h2::before, .project-documentation h2::before, .project-results h2::before {
  content: '';
  width: 4px;
  height: 2rem;
  background: linear-gradient(135deg, #63f2c8, #00d4ff);
  margin-right: 1rem;
  border-radius: 2px;
}

.project-overview p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.project-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.project-features ul {
  list-style: none;
  padding: 0;
}

.project-features li {
  padding: 0.5rem 0;
  color: #e0e0e0;
  position: relative;
  padding-left: 1.5rem;
}

.project-features li::before {
  content: '▸';
  color: #63f2c8;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tech-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(99, 242, 200, 0.05);
  border-color: rgba(99, 242, 200, 0.2);
  transform: translateY(-2px);
}

.tech-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #63f2c8;
  margin-bottom: 1rem;
  text-align: center;
}

.tech-item ul {
  list-style: none;
  padding: 0;
}

.tech-item li {
  padding: 0.3rem 0;
  color: #e0e0e0;
  text-align: center;
  font-size: 0.95rem;
}

.doc-section {
  margin-bottom: 2.5rem;
}

.doc-section:last-child {
  margin-bottom: 0;
}

.doc-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(99, 242, 200, 0.3);
  padding-bottom: 0.5rem;
}

.doc-section h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #63f2c8;
  margin: 1.5rem 0 0.5rem 0;
}

.doc-section p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.doc-section ul, .doc-section ol {
  color: #e0e0e0;
  line-height: 1.7;
  margin-left: 1.5rem;
}

.doc-section li {
  margin-bottom: 0.5rem;
}

.project-results ul {
  list-style: none;
  padding: 0;
}

.project-results li {
  padding: 0.8rem 0;
  color: #e0e0e0;
  position: relative;
  padding-left: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-results li:last-child {
  border-bottom: none;
}

.project-results li::before {
  content: '✓';
  color: #63f2c8;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Back to Portfolio Button */
.navbar .logo {
  color: #63f2c8;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .logo:hover {
  color: #00ff99;
  text-shadow: 0 0 30px rgba(0, 255, 153, 0.8);
  transform: translateX(-5px);
}

.logo:focus, .logo:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Responsive Design for Project Pages */
@media (max-width: 768px) {
  .project-detail {
    padding: 1rem;
  }
  
  .project-header {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
  
  .project-header h1 {
    font-size: 2rem;
  }
  
  .project-meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .project-overview, .project-tech, .project-documentation, .project-results {
    padding: 1.5rem;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .project-overview h2, .project-tech h2, .project-documentation h2, .project-results h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .project-header h1 {
    font-size: 1.8rem;
  }
  
  .project-overview, .project-tech, .project-documentation, .project-results {
    padding: 1rem;
  }
  
  .project-overview p {
    font-size: 1rem;
  }
}

.verified-link svg {
  color: #63f2c8;
  background: #0a0a0a;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(99,242,200,0.15);
  transition: color 0.2s, box-shadow 0.2s;
}
.verified-link:hover svg {
  color: #00ff99;
  box-shadow: 0 4px 16px rgba(99,242,200,0.25);
}

.certificate-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(99,242,200,0.15);
  display: block;
  margin: 0 auto;
}
.verified-link {
  position: absolute !important;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verified-link:focus {
  outline: none !important;
  box-shadow: none !important;
}

.skills-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 0 0;
}

.skill-pill {
  background: rgba(99, 242, 200, 0.10);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(99, 242, 200, 0.18);
  color: #63f2c8;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 2px 12px rgba(99,242,200,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: default;
  user-select: none;
  margin-bottom: 0.2rem;
}

.skill-pill:hover {
  background: rgba(99, 242, 200, 0.22);
  color: #fff;
  box-shadow: 0 0 16px 2px #63f2c8;
}

.skills-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
  margin: 2.5rem 0 0 0;
  max-width: 1400px;
  width: 100%;
}

.skill-card {
  background: rgba(99, 242, 200, 0.10);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(99, 242, 200, 0.18);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(99,242,200,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  min-width: 150px;
  max-width: 200px;
  width: 100%;
  padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s, border 0.2s;
  cursor: default;
  user-select: none;
  box-sizing: border-box;
}

.skill-card:hover {
  background: rgba(99, 242, 200, 0.22);
  box-shadow: 0 0 18px 2px #63f2c8, 0 2px 12px rgba(99,242,200,0.12);
  transform: translateY(-4px) scale(1.04);
  border: 2.5px solid #63f2c8;
}

.skill-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 0.9rem;
  filter: drop-shadow(0 2px 8px rgba(99,242,200,0.10));
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  padding: 0.4rem;
}

.skill-card span {
  color: #63f2c8;
  font-weight: 600;
  font-size: 1.08rem;
  text-align: center;
  margin-top: 0.2rem;
  letter-spacing: 0.2px;
}

@media (max-width: 900px) {
  .skills-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    max-width: 100%;
  }
  .skill-card {
    min-height: 110px;
    max-width: 140px;
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
  }
  .skill-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.4rem;
  }
  .skill-card span {
    font-size: 0.92rem;
  }
}

.experience-section {
  width: 100%;
  max-width: 1100px;
  margin: 3rem auto 0 auto;
  padding: 2.5rem 0 2rem 0;
  position: relative;
}

.experience-section h2 {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  margin-top: 0;
  background: linear-gradient(135deg, #63f2c8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  justify-content: flex-start;
  align-self: flex-start;
}

.timeline-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #63f2c8 0%, #00d4ff 100%);
  opacity: 0.18;
  border-radius: 2px;
  z-index: 0;
}

.experience-cards {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.timeline-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.timeline-dot {
  flex: 0 0 68px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.timeline-dot::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 2.2rem;
  background: linear-gradient(135deg, #63f2c8, #00d4ff);
  border-radius: 50%;
  box-shadow: 0 0 16px 2px #63f2c8, 0 0 0 4px rgba(99,242,200,0.10);
  border: 3px solid #fff;
}

.exp-content {
  background: rgba(99, 242, 200, 0.10);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(99, 242, 200, 0.18);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(99,242,200,0.08);
  padding: 2rem 3.5rem 1.7rem 3.5rem;
  min-width: 320px;
  max-width: 1000px;
  width: 100%;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 2.7rem;
  margin-left: 0;
}

.exp-content::before {
  display: none;
}

@media (max-width: 900px) {
  .timeline-container {
    max-width: 100vw;
  }
  .exp-content {
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 0.7rem 1rem 1.2rem;
  }
  .timeline-dot {
    flex: 0 0 38px;
  }
  .timeline-dot::before {
    width: 13px;
    height: 13px;
    margin-top: 1.1rem;
  }
}

.exp-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #63f2c8 0%, #00d4ff 100%);
  border-radius: 8px 0 0 8px;
  opacity: 0.7;
}

.exp-content:hover {
  background: rgba(99, 242, 200, 0.18);
  border: 2px solid #63f2c8;
  box-shadow: 0 0 18px 2px #63f2c8, 0 2px 12px rgba(99,242,200,0.12);
  transform: translateY(-4px) scale(1.03);
}

.exp-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 0.7rem;
  z-index: 1;
  justify-content: space-between;
}

.exp-role {
  font-size: 1.35rem;
  font-weight: 800;
  color: #63f2c8;
  letter-spacing: 0.5px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0 0.7rem 0 0;
  box-shadow: none;
  transition: none;
  display: inline-block;
  background: linear-gradient(135deg, #63f2c8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.exp-tech {
  font-size: 0.85rem;
  padding: 0.18rem 0.7rem;
  border-radius: 18px;
  margin-right: 0.3rem;
  margin-bottom: 0.1rem;
  background: rgba(99, 242, 200, 0.10);
  border: 1.5px solid rgba(99, 242, 200, 0.18);
  color: #63f2c8;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(99,242,200,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  vertical-align: middle;
}

.exp-tech:hover {
  background: rgba(99, 242, 200, 0.22);
  color: #fff;
  box-shadow: 0 0 12px 2px #63f2c8;
}

.exp-company {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
  opacity: 0.85;
}

.exp-date {
  font-size: 0.98rem;
  color: #00ffe5;
  font-weight: 500;
  opacity: 0.7;
  margin-left: auto;
  align-self: flex-start;
  position: absolute;
  top: 1.1rem;
  right: 2.2rem;
  z-index: 2;
  background: rgba(10,10,10,0.12);
  padding: 0.18rem 0.9rem;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(99,242,200,0.08);
}

.exp-body ul {
  margin: 0.2rem 0 0 1.2rem;
  padding: 0;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  list-style: disc;
  z-index: 1;
}

.exp-body li {
  margin-bottom: 0.3rem;
}

@media (max-width: 700px) {
  .experience-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
    max-width: 100%;
  }
  .experience-cards {
    gap: 1.2rem;
  }
  .exp-content {
    padding: 1rem 0.7rem 0.7rem 1rem;
    min-width: 0;
    max-width: 100%;
  }
  .exp-header {
    gap: 0.5rem;
  }
  .exp-role {
    font-size: 1rem;
  }
  .exp-company {
    font-size: 0.95rem;
  }
  .exp-date {
    font-size: 0.9rem;
  }
  .exp-body ul {
    font-size: 0.93rem;
    margin-left: 0.7rem;
  }
}

section, .about, .skills, .certificates, .projects, .contact, .experience-section {
  scroll-margin-top: 80px;
}

html {
  scroll-behavior: smooth;
}

.skills-category {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
  text-align: left;
  color: #00ffe5;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,255,153,0.10);
}

.education-section {
  margin: 4rem auto 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 3vw;
  animation: fadeInUp 1s both;
  position: relative;
}

.education-bg-accent {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90vw;
  max-width: 1100px;
  height: 340px;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: radial-gradient(circle at 60% 40%, rgba(99,242,200,0.18) 0%, rgba(0,212,255,0.10) 60%, transparent 100%);
  filter: blur(32px);
  opacity: 0.7;
  pointer-events: none;
  border-radius: 40px;
}

.education-card {
  background: rgba(255,255,255,0.13);
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(99,242,200,0.10), 0 1.5px 8px 0 rgba(0,255,153,0.08);
  border: 1.5px solid rgba(99,242,200,0.13);
  padding: 2.5rem 4.5rem 2.2rem 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.2s, border 0.2s;
  z-index: 1;
}

.education-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.education-degree {
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(135deg, #63f2c8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.1rem;
  letter-spacing: 0.2px;
}

.education-school {
  font-size: 1.08rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.7px;
}

.education-year {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 1.04rem;
  font-weight: 600;
  color: #63f2c8;
  background: rgba(0,255,153,0.10);
  border-radius: 12px;
  padding: 0.32rem 1.1rem;
  margin-bottom: 0;
  align-self: unset;
  box-shadow: 0 2px 8px rgba(0,255,153,0.10);
}

.education-body ul {
  margin: 0.7rem 0 0 1.2rem;
  padding: 0;
  color: #eafff7;
  font-size: 1.07rem;
  line-height: 1.8;
}

.education-body li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.education-cap { display: none !important; }
.education-card::before, .education-card::after { display: none !important; content: none !important; }

.education-card:hover {
  box-shadow: 0 0 32px 8px #63f2c8, 0 4px 32px 0 rgba(99,242,200,0.18);
  border: 2.5px solid #63f2c8;
  transform: scale(1.018);
  z-index: 2;
}

/* Unique Section Animations */
@keyframes aboutFadeIn {
  0% { opacity: 0; transform: translateX(-60px) scale(0.95) rotate(-2deg);}
  100% { opacity: 1; transform: none;}
}
@keyframes skillsPop {
  0% { opacity: 0; transform: scale(0.8) rotateY(30deg);}
  100% { opacity: 1; transform: none;}
}
@keyframes projectsSlideUp {
  0% { opacity: 0; transform: translateY(80px) scale(0.95);}
  100% { opacity: 1; transform: none;}
}
@keyframes certificatesZoom {
  0% { opacity: 0; transform: scale(0.7) rotate(-8deg);}
  100% { opacity: 1; transform: none;}
}
@keyframes contactBounce {
  0% { opacity: 0; transform: translateY(60px) scale(0.9);}
  80% { opacity: 1; transform: translateY(-10px) scale(1.02);}
  100% { opacity: 1; transform: none;}
}
@keyframes experienceSlideRight {
  0% { opacity: 0; transform: translateX(-80px) scale(0.95);}
  100% { opacity: 1; transform: none;}
}
@keyframes educationFadeUp {
  0% { opacity: 0; transform: translateY(60px) scale(0.95);}
  100% { opacity: 1; transform: none;}
}

/* Animation classes for JS to toggle */
.section-animate-about { animation: aboutFadeIn 1.1s cubic-bezier(.5,1.5,.5,1) both; }
.section-animate-skills { animation: skillsPop 1.1s cubic-bezier(.5,1.5,.5,1) both; }
.section-animate-projects { animation: projectsSlideUp 1.1s cubic-bezier(.5,1.5,.5,1) both; }
.section-animate-certificates { animation: certificatesZoom 1.1s cubic-bezier(.5,1.5,.5,1) both; }
.section-animate-contact { animation: contactBounce 1.1s cubic-bezier(.5,1.5,.5,1) both; }
.section-animate-experience { animation: experienceSlideRight 1.1s cubic-bezier(.5,1.5,.5,1) both; }
.section-animate-education { animation: educationFadeUp 1.1s cubic-bezier(.5,1.5,.5,1) both; }

.project-header-img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(99,242,200,0.10);
  background: rgba(255,255,255,0.08);
  display: block;
}

.project-body h3{
  font-size: 1.2rem; 
  font-weight: 600;
  color: #fff;
  text-align: justify;
}




