/* === Responsive Sidebar Navigation === */
.sidebar-toggle {
  display: none;
}
.sidebar-btn {
  display: none;
  position: fixed;
  top: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  z-index: 2001;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sidebar-btn span {
  display: block;
  width: 30px;
  height: 4px;
  margin: 5px 0;
  background: #00e6ff;
  border-radius: 2px;
  transition: 0.3s;
}
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 240px;
  height: 100vh;
  background: rgba(20, 30, 40, 0.98);
  box-shadow: 2px 0 24px rgba(0,0,0,0.18);
  z-index: 2000;
  padding: 32px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: left 0.35s cubic-bezier(.4,2,.6,1);
}
.sidebar a {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.2s;
  font-weight: 500;
}
.sidebar a:hover {
  background: rgba(0,230,255,0.10);
}
.sidebar .dropdown {
  position: relative;
}
.sidebar .dropdown-btn {
  background: none;
  border: none;
  color: #00e6ff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar .dropdown-content {
  display: none;
  flex-direction: column;
  gap: 0;
  margin-left: 10px;
}
.sidebar .dropdown.open .dropdown-content {
  display: flex;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.35);
  z-index: 1999;
}
@media (max-width: 900px) {
  .navbar, .nav-box {
    display: none !important;
  }
  .sidebar-btn {
    display: flex;
  }
  .sidebar-toggle:checked ~ .sidebar {
    left: 0;
  }
  .sidebar-toggle:checked ~ .sidebar-overlay {
    display: block;
  }
}
@media (min-width: 901px) {
  .sidebar, .sidebar-btn, .sidebar-overlay {
    display: none !important;
  }
  .navbar, .nav-box {
    display: flex !important;
  }
}
/* Desktop: show nav bar, hide hamburger. Mobile: show hamburger, overlay nav. */


/* Responsive Navigation Bar */
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1101;
}
.nav-toggle-label span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #00e6ff;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-box {
  background: none;
  border-radius: 0;
  padding: 10px 0;
  box-shadow: none;
  width: auto;
  max-width: none;
  overflow: visible;
  position: static;
  z-index: 1;
}
.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  flex-direction: row;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: inline-block;
  font-size: 1rem;
  border-bottom: none;
  text-align: left;
}
.navbar a:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav-toggle-label {
    display: flex;
  }
  .nav-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: rgba(20, 30, 40, 0.97);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.4,2,.6,1);
    padding: 0;
  }
  .nav-toggle:checked + .nav-toggle-label + .nav-box {
    max-height: 350px;
    padding: 10px 0 18px 0;
  }
  .navbar {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .navbar a {
    display: block;
    padding: 16px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0,230,255,0.12);
    width: 100%;
    text-align: center;
  }
  .navbar a:last-child {
    border-bottom: none;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1100;
    background: rgba(20, 30, 40, 0.95);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    padding: 0 0 0 16px;
  }
  main {
    margin-top: 100px;
  }
}
/* Responsive Hamburger Navigation - Modern Overlay */
@media (max-width: 900px) {
  .nav-box {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: none;
    border-radius: 0 0 18px 18px;
    box-shadow: none;
    width: 100vw;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.4,2,.6,1);
    padding: 0;
  }
  .nav-toggle:checked ~ .nav-box {
    max-height: 350px;
    padding: 10px 0 18px 0;
  }
  .nav-toggle-label {
    display: flex;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1101;
  }
  .navbar {
    flex-direction: column;
    gap: 0;
  }
  .navbar a {
    display: block;
    padding: 16px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0,230,255,0.12);
    width: 100%;
    text-align: center;
  }
  .navbar a:last-child {
    border-bottom: none;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1100;
    background: none;
    padding: 0 0 0 16px;
  }
  main {
    margin-top: 80px;
  }
}
/* Mobile orientation notice */
.rotate-notice {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: rgba(0,0,0,0.85);
  color: #fff;
  text-align: center;
  padding: 18px 8px;
  font-size: 1.1rem;
  z-index: 2000;
}

.projects-heading.glow-heading {
  color: #00e6ff;
  text-shadow: 0 0 18px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
  font-size: 2rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 18px;
  animation: glowPulse 2.5s infinite alternate;
  text-align: center;
}

.project-fade {
  opacity: 0;
  animation: fadeInProject 1.2s forwards;
  animation-delay: 0.2s;
}
.project-fade:nth-of-type(2) { animation-delay: 0.5s; }
.project-fade:nth-of-type(3) { animation-delay: 0.8s; }
.project-fade:nth-of-type(4) { animation-delay: 1.1s; }

@keyframes fadeInProject {
  to { opacity: 1; }
}
.css-roles {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  margin-bottom: 10px;
}
.css-role {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  opacity: 0;
  color: #00e6ff;
  font-weight: 600;
  font-size: 1.25rem;
  text-shadow: 0 0 12px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
  animation: role-fade 6s infinite;
  white-space: nowrap;
}
.css-role:first-child {
  animation-delay: 0s;
}
.css-role:last-child {
  animation-delay: 3s;
}
@keyframes role-fade {
  0% { opacity: 1; }
  45% { opacity: 1; }
  55% { opacity: 0; }
  100% { opacity: 0; }
}
body {
  min-height: 100vh;
  background: linear-gradient(120deg, #232526 0%, #414345 100%);
  background-attachment: fixed;
  background-size: cover;
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
@media (max-width: 900px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1100;
    background: rgba(20, 30, 40, 0.95);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  }
  main {
    margin-top: 100px;
  }
}
/* Hamburger menu styles */
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  position: absolute;
  top: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle-label span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 5px 0;
  background: #00e6ff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav-toggle-label {
    display: flex;
  }
  .nav-box {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    background: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 0 18px 18px;
    max-width: 100vw;
    width: 100vw;
    z-index: 1000;
    transition: max-height 0.4s cubic-bezier(.4,2,.6,1);
    overflow: hidden;
    max-height: 0;
    padding: 0;
  }
  .nav-toggle:checked ~ .nav-box {
    max-height: 220px;
    padding: 6px 0 8px 0;
  }
  .navbar {
    flex-direction: column;
    gap: 0;
  }
  .navbar a {
    display: block;
    padding: 10px 0;
    font-size: 1.08rem;
    border-bottom: 1px solid rgba(0,230,255,0.12);
    width: 100%;
    text-align: center;
  }
  .navbar a:last-child {
    border-bottom: none;
  }
}

.soft-skills-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}
.soft-skill-tile {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  width: 180px;
  height: 120px;
  perspective: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.soft-tile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,2,.6,1);
  transform-style: preserve-3d;
}
.soft-skill-tile:hover .soft-tile-inner {
  transform: rotateY(180deg);
}
.soft-tile-front, .soft-tile-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 0 12px;
  text-align: center;
}
.soft-tile-front {
  background: rgba(0,230,255,0.10);
  color: #00e6ff;
  font-weight: 600;
  text-shadow: 0 0 12px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
}
.soft-tile-back {
  background: rgba(0,230,255,0.18);
  color: #e0f7fa;
  transform: rotateY(180deg);
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,255,255,0.10);
}
.soft-skills {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 32px 24px;
  margin: 36px auto 0 auto;
  max-width: 700px;
  text-align: center;
}
.soft-skills h2 {
  color: #00e6ff;
  text-shadow: 0 0 12px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
  font-size: 1.7rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 18px;
  animation: glowPulse 2.5s infinite alternate;
}
.soft-skills ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}
.soft-skills li {
  background: rgba(0,230,255,0.08);
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 12px 18px;
  color: #e0f7fa;
  font-size: 1.08rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  text-shadow: 0 2px 8px rgba(0,255,255,0.10);
  transition: background 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}
.soft-skills li strong {
  color: #00e6ff;
  font-weight: 600;
  margin-right: 6px;
}
.soft-skills li:last-child {
  margin-bottom: 0;
}
body, .glass, .about-glass, .about-profile, .about-img, .about-heading, .about-fade, .logo, .navbar, .nav-box, .skills-tiles, .skill-tile, .tile-inner, .tile-front, .tile-back {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.about-glass {
  max-width: 900px;
  margin: 48px auto 0 auto;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-profile {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 18px rgba(0,230,255,0.18);
  display: block;
  margin-bottom: 18px;
}

.about-heading.glow-heading {
  text-align: center;
  color: #00e6ff;
  text-shadow: 0 0 18px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
  font-size: 2rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 18px;
  animation: glowPulse 2.5s infinite alternate;
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 18px #00e6ff, 0 2px 8px rgba(0,255,255,0.25); }
  100% { text-shadow: 0 0 32px #00e6ff, 0 4px 16px rgba(0,255,255,0.35); }
}

.about-fade {
  opacity: 0;
  animation: fadeInAbout 1.2s forwards;
  animation-delay: 0.2s;
  text-align: center;
  margin-bottom: 14px;
}
.about-fade:nth-of-type(2) { animation-delay: 0.5s; }
.about-fade:nth-of-type(3) { animation-delay: 0.8s; }
.about-fade:nth-of-type(4) { animation-delay: 1.1s; }

@keyframes fadeInAbout {
  to { opacity: 1; }
}
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 32px 24px;
  margin: 32px auto;
  max-width: 700px;
}
.css-roles {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  margin-bottom: 10px;
}
.css-role {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  opacity: 0;
  color: #00e6ff;
  font-weight: 600;
  font-size: 1.25rem;
  text-shadow: 0 0 12px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
  animation: role-fade 7s infinite;
  white-space: nowrap;
}
.css-role:first-child {
  animation-delay: 0s;
}
.css-role:last-child {
  animation-delay: 3.5s;
}
@keyframes role-fade {
  0% { opacity: 1; }
  45% { opacity: 1; }
  55% { opacity: 0; }
  100% { opacity: 0; }
}
.fade-in-desc #animated-role {
  transition: opacity 0.7s;
  color: #00e6ff;
  font-weight: 600;
  text-shadow: 0 0 12px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
}
.profile-glass {
  max-width: 900px;
  margin: 48px auto 0 auto;
  padding: 36px 32px;
  gap: 40px;
}

.profile-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 18px rgba(0,230,255,0.18);
  display: block;
  margin-right: 40px;
}

.welcome-text {
  text-align: center;
  color: #00e6ff;
  text-shadow: 0 0 12px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
  font-size: 2.2rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 18px;
}

.fade-in-desc {
  text-align: center;
  color: #e0f7fa;
  font-size: 1.18rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0,255,255,0.18), 0 1px 2px rgba(0,0,0,0.12);
}
.skills-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.skill-tile {
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  width: 120px;
  height: 140px;
  perspective: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,2,.6,1);
  transform-style: preserve-3d;
}

.skill-tile:hover .tile-inner {
  transform: rotateY(180deg);
}

.tile-front, .tile-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.tile-front {
  background: rgba(0,230,255,0.10);
}

.tile-back {
  background: rgba(0,230,255,0.18);
  transform: rotateY(180deg);
  color: #00e6ff;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 0 12px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
}

.skill-icon {
  width: 85px;
  height: 85px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,255,255,0.18));
}
.glass h2 {
  text-align: center;
  color: #00e6ff;
  text-shadow: 0 0 12px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
  font-size: 2.1rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 18px;
}

.glass p, .glass ul {
  text-align: center;
}

.glass p, .glass li {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: #e0f7fa;
  font-size: 1.13rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,255,255,0.18), 0 1px 2px rgba(0,0,0,0.12);
  transition: color 0.3s, text-shadow 0.3s;
}

.glass p strong {
  color: #00e6ff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,255,255,0.25);
}

.skills-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
}

.skills-list li {
  display: inline-block;
  margin: 0 14px 10px 14px;
  padding: 8px 18px;
  background: rgba(0,230,255,0.08);
  border-radius: 18px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,255,255,0.10);
}
.glass h2 {
  text-align: center;
  color: #00e6ff;
  text-shadow: 0 0 12px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
  font-size: 2.1rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 18px;
}

.edu-item {
  text-align: center;
  color: #e0f7fa;
  font-size: 1.13rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,255,255,0.18), 0 1px 2px rgba(0,0,0,0.12);
  transition: color 0.3s, text-shadow 0.3s;
}
.glass p, .glass ul {
  text-align: center;
}

.glass p, .glass li {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: #e0f7fa;
  font-size: 1.13rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,255,255,0.18), 0 1px 2px rgba(0,0,0,0.12);
  transition: color 0.3s, text-shadow 0.3s;
}

.glass p strong {
  color: #00e6ff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,255,255,0.25);
}
.glass ul {
  margin-bottom: 24px;
}

.cv-btn-container {
  margin-top: 32px;
  text-align: center;
}
/* Glowing button for CV download */
.glow-btn {
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  background: linear-gradient(90deg, #00c6fb, #005bea);
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 16px 4px #00fff7, 0 0 32px 8px #00c6fb;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.glow-btn:hover {
  box-shadow: 0 0 32px 8px #00fff7, 0 0 64px 16px #00c6fb;
  transform: scale(1.05);
}
/* Glassmorphism for education section */
  .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  .logo {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin-top: 18px;
}

body {
  background-image: url("image/2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Poppins', sans-serif;
}


/* Header and logo */

.header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 32px 0 32px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1100;
  background: none;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00e6ff;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  text-shadow: 0 0 12px #00e6ff, 0 2px 8px rgba(0,255,255,0.25);
}

@media (max-width: 900px) {
  .header {
    padding: 12px 16px 0 16px;
  }
  .logo {
    font-size: 1.1rem;
  }
}

.nav-box {
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  max-width: none !important;
  position: static !important;
  z-index: 1;
  overflow: visible !important;
}



.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.navbar a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Section box */
.content-box,
.about-info,
.skills,
.education,
.projects,
.contact-form {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
}

/* Headings */
h1, h2 {
  color: #f0f0f0;
  margin-bottom: 10px;
}

/* Image gallery */
.gallery img {
  width: 100%;
  max-width: 300px;
  margin: 10px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  color: #ccc;
  font-size: 14px;
  border-radius: 10px;
}

/* === Accordion Projects Section === */
.projects-accordion {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  background: rgba(255,255,255,0.13);
  transition: box-shadow 0.25s, transform 0.25s;
}
.accordion-item:hover {
  box-shadow: 0 16px 48px 0 rgba(0,230,255,0.18);
  transform: translateY(-4px) scale(1.01);
}
.accordion-toggle {
  display: none;
}
.accordion-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px 24px;
  background: rgba(20,30,40,0.85);
  color: #00e6ff;
  font-size: 1.18rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(0,230,255,0.10);
  transition: background 0.2s;
  user-select: none;
}
.accordion-label:hover {
  background: rgba(0,230,255,0.08);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.4,2,.6,1);
  padding: 0 24px;
}
.accordion-toggle:checked ~ .accordion-label {
  background: rgba(0,230,255,0.10);
  color: #fff;
}
.accordion-toggle:checked ~ .accordion-label .badge {
  filter: brightness(1.2) drop-shadow(0 0 6px #00e6ff);
}
.accordion-toggle:checked ~ .accordion-content {
  max-height: 600px;
  padding: 18px 24px 24px 24px;
  transition: max-height 0.7s cubic-bezier(.4,2,.6,1);
}

/* Badge styles for project status */
.badge {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-left: 12px;
  box-shadow: 0 0 8px 2px rgba(0,230,255,0.18);
  vertical-align: middle;
  position: relative;
}
.badge.live {
  background: linear-gradient(135deg, #00ffb3 60%, #00e6ff 100%);
  box-shadow: 0 0 12px #00ffb3, 0 0 8px #00e6ff;
  animation: badgePulse 1.2s infinite alternate;
}
.badge.progress {
  background: linear-gradient(135deg, #ffb300 60%, #ffe066 100%);
  box-shadow: 0 0 12px #ffb300, 0 0 8px #ffe066;
  animation: badgePulse 1.2s infinite alternate;
}
@keyframes badgePulse {
  from { filter: brightness(1.1) drop-shadow(0 0 6px #00e6ff); }
  to { filter: brightness(1.3) drop-shadow(0 0 16px #00e6ff); }
}

/* Accordion project image and info */
.accordion-content .project-img {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  margin: 24px 0 14px 0;
  box-shadow: 0 2px 12px rgba(0,230,255,0.10);
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.accordion-content .project-info {
  padding: 0 8px;
  text-align: center;
}
.accordion-content .glow-btn {
  margin-top: 18px;
}
@media (max-width: 900px) {
  .projects-accordion {
    gap: 18px;
    padding: 0 2vw;
  }
  .accordion-label, .accordion-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .projects-grid {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding: 0 2vw;
  }
  .project-card {
    max-width: 98vw;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 14px 0;
  }
  .project-img {
    max-width: 90vw;
    width: 100%;
    height: auto;
    margin: 18px 0 10px 0;
  }
  .project-info {
    padding: 0 6px;
  }
}
@media (max-width: 600px) {
  .project-card {
    max-width: 99vw;
    padding: 0 0 10px 0;
  }
  .project-img {
    max-width: 98vw;
    border-radius: 10px;
    margin: 12px 0 8px 0;
  }
  .project-title {
    font-size: 1.08rem;
  }
  .project-desc, .project-meta {
    font-size: 0.98rem;
  }
}

/* Project card image size adjustments for all screens */
.project-img {
  width: 100%;
  max-width: 210px;
  height: auto;
  border-radius: 12px;
  margin: 18px auto 12px auto;
  box-shadow: 0 2px 12px rgba(0,230,255,0.10);
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .project-img {
    max-width: 160px;
    margin: 14px auto 10px auto;
    border-radius: 10px;
  }
}
@media (max-width: 600px) {
  .project-img {
    max-width: 120px;
    margin: 10px auto 8px auto;
    border-radius: 8px;
  }
}
.project-info {
  text-align: center;
}
.glow-btn {
  display: inline-block;
  margin: 18px auto 0 auto;
  text-align: center;
}
