* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-moz-selection {
  background: rgba(123, 31, 162, 0.3);
  color: #4A148C;
}

::selection {
  background: rgba(123, 31, 162, 0.3);
  color: #4A148C;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1A1A2E;
  line-height: 1.6;
  background-color: #FEFEFE;
  background-attachment: fixed;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  position: relative;
  transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 12px rgba(123, 31, 162, 0.25);
}

h2 {
  font-size: 2.25rem;
  text-shadow: 0 2px 10px rgba(156, 39, 176, 0.15);
}

h3 {
  font-size: 1.65rem;
}

h4 {
  font-size: 1.35rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: 1.05rem;
  transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a {
  color: #F57C00;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-weight: 500;
  position: relative;
  padding: 0 2px;
}
a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FF9800, #4DB6AC, #9C27B0);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
a:hover {
  color: #7B1FA2;
}
a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
a.no-decoration::after {
  display: none;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.12);
  z-index: 1;
  background: white;
  color: #1A1A2E;
  border: 2px solid rgba(156, 39, 176, 0.2);
}
.btn::after {
  display: none;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74, 20, 140, 0.18);
  background: #F8F4FE;
  border-color: #9C27B0;
  color: #7B1FA2;
}
.btn:hover::before {
  transform: translateX(0) skewX(-15deg);
}
.btn:active {
  transform: translateY(0);
}
.btn.btn-primary {
  background: linear-gradient(135deg, #4A148C 0%, #9C27B0 100%);
  color: white;
  border: none;
}
.btn.btn-primary:hover {
  background: linear-gradient(135deg, rgb(62.20625, 16.8125, 117.6875) 0%, #7B1FA2 100%);
}
.btn.btn-secondary {
  background: linear-gradient(135deg, #E65100 0%, #FF9800 100%);
  color: white;
  border: none;
}
.btn.btn-secondary:hover {
  background: linear-gradient(135deg, rgb(204.5, 72.0195652174, 0) 0%, #F57C00 100%);
}
.btn.btn-tertiary {
  background: linear-gradient(135deg, #00695C 0%, #4DB6AC 100%);
  color: white;
  border: none;
}
.btn.btn-tertiary:hover {
  background: linear-gradient(135deg, rgb(0, 79.5, 69.6571428571) 0%, #00897B 100%);
}
.btn.btn-mix {
  background: linear-gradient(135deg, #7B1FA2 0%, #F57C00 100%);
  color: white;
  border: none;
}
.btn.btn-mix:hover {
  background: linear-gradient(135deg, #4A148C 0%, #E65100 100%);
}
.btn.btn-tricolor {
  background: linear-gradient(135deg, #7B1FA2 0%, #00897B 50%, #F57C00 100%);
  color: white;
  border: none;
}
.btn.btn-tricolor:hover {
  background: linear-gradient(135deg, #4A148C 0%, #00695C 50%, #E65100 100%);
}
.btn.btn-white {
  background: white;
  color: #1A1A2E;
  border: 2px solid rgba(156, 39, 176, 0.2);
}
.btn.btn-white:hover {
  background: #F8F4FE;
  border-color: #9C27B0;
  color: #7B1FA2;
}
.btn.btn-outline {
  background: transparent;
  border: 2px solid #7B1FA2;
  color: #7B1FA2;
}
.btn.btn-outline:hover {
  background-color: rgba(156, 39, 176, 0.1);
}
.btn.btn-outline.btn-orange {
  border-color: #F57C00;
  color: #F57C00;
}
.btn.btn-outline.btn-orange:hover {
  background-color: rgba(255, 152, 0, 0.1);
}
.btn.btn-outline.btn-green {
  border-color: #00897B;
  color: #00897B;
}
.btn.btn-outline.btn-green:hover {
  background-color: rgba(77, 182, 172, 0.1);
}
.btn.btn-sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
}
.btn.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

input, textarea, select {
  width: 100%;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(156, 39, 176, 0.15);
  border-radius: 8px;
  font-family: "Poppins", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: rgba(248, 244, 254, 0.5);
  box-shadow: 0 2px 6px rgba(74, 20, 140, 0.05) inset;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(123, 31, 162, 0.5);
  box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.1);
  background-color: white;
}
input::placeholder, textarea::placeholder, select::placeholder {
  color: #6D6D9C;
  opacity: 0.6;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: #4A148C;
  font-size: 0.95rem;
}

.text-center {
  text-align: center;
}

.text-purple {
  color: #7B1FA2;
}

.text-orange {
  color: #F57C00;
}

.text-green {
  color: #00897B;
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #4A148C 0%, #9C27B0 100%);
  color: white;
}

.bg-gradient-orange {
  background: linear-gradient(135deg, #E65100 0%, #FF9800 100%);
  color: white;
}

.bg-gradient-green {
  background: linear-gradient(135deg, #00695C 0%, #4DB6AC 100%);
  color: white;
}

.bg-gradient-mix {
  background: linear-gradient(135deg, #7B1FA2 0%, #F57C00 100%);
  color: white;
}

.bg-gradient-tricolor {
  background: linear-gradient(135deg, #7B1FA2 0%, #00897B 50%, #F57C00 100%);
  color: white;
}

.image-placeholder {
  background: linear-gradient(135deg, #7B1FA2 0%, #00897B 50%, #F57C00 100%);
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  min-height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.12);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}
.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 60%);
  background-size: 200% 200%;
  animation: shimmer 2.5s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style-type: none;
  padding: 0;
}
.skills-list li {
  background: linear-gradient(135deg, #F8F4FE 0%, rgb(234.2, 213.25, 242.3) 100%);
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.12);
  border-left: 3px solid #7B1FA2;
  border-right: 3px solid #F57C00;
  border-top: 2px solid #00897B;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.skills-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74, 20, 140, 0.18);
  background: white;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  min-height: calc(100vh - 200px);
  padding-top: 2rem;
}
main.home-main {
  padding-top: 0;
}

.page-header {
  margin-bottom: 3.5rem;
  padding: 1.5rem 0;
}
.page-header h1 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

section {
  margin-bottom: 4rem;
  padding: 1.5rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.projects-grid, .certifications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .projects-grid, .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .projects-grid, .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.info-card {
  background-color: #F8F4FE;
  padding: 1.5rem;
  border-radius: 8px;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.info-card h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.info-card .read-more {
  display: inline-block;
  margin-top: 1rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: rgba(156, 39, 176, 0.2);
}
.timeline .timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #F57C00;
}

.project-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(156, 39, 176, 0.2);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.project-card .project-image {
  height: 200px;
  overflow: hidden;
}
.project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card .project-image .image-placeholder {
  height: 100%;
}
.project-card .project-details {
  padding: 1.5rem;
}
.project-card .project-details h2 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.project-card .project-details .project-category {
  color: #6D6D9C;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.project-card .project-details .project-desc {
  margin-bottom: 1.25rem;
}
.project-card .project-details .project-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.project-card .project-details .project-links .external-link {
  color: #6D6D9C;
  font-size: 0.875rem;
}
.project-card .project-details .project-links .external-link:hover {
  color: #F57C00;
}

.profile-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .profile-section {
    grid-template-columns: 200px 1fr;
    text-align: left;
  }
}
.profile-section .profile-image {
  display: flex;
  justify-content: center;
}
.profile-section .profile-image .image-placeholder {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  font-size: 2.5rem;
}
.profile-section .profile-image img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}
.profile-section .job-title {
  color: #6D6D9C;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.alma-mater-section {
  margin-bottom: 3rem;
}
.alma-mater-section .education-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: #F8F4FE;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.12);
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (min-width: 768px) {
  .alma-mater-section .education-info {
    grid-template-columns: 150px 1fr;
    align-items: center;
  }
}
.alma-mater-section .education-info .university-logo {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .alma-mater-section .education-info .university-logo {
    justify-content: flex-start;
  }
}
.alma-mater-section .education-info .university-logo .image-placeholder {
  width: 150px;
  height: 150px;
  background: #1B365D;
}
.alma-mater-section .education-info .university-logo img {
  width: 150px;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  background: #1B365D;
  padding: 1rem;
}
.alma-mater-section .education-info .university-details {
  text-align: center;
}
@media (min-width: 768px) {
  .alma-mater-section .education-info .university-details {
    text-align: left;
  }
}
.alma-mater-section .education-info .university-details h3 {
  color: #7B1FA2;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.alma-mater-section .education-info .university-details .degree {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
}
.alma-mater-section .education-info .university-details .graduation-year {
  color: #F57C00;
  font-weight: 500;
  margin-bottom: 1rem;
}
.alma-mater-section .education-info .university-details .university-description {
  color: #6D6D9C;
  line-height: 1.6;
  margin-bottom: 0;
}

.network-section {
  margin-bottom: 3rem;
}
.network-section .network-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .network-section .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.network-section .network-item {
  display: flex;
  gap: 1.5rem;
  background-color: #F8F4FE;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.12);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.network-section .network-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 20, 140, 0.18);
}
@media (max-width: 575px) {
  .network-section .network-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.network-section .network-item .network-image {
  flex-shrink: 0;
}
.network-section .network-item .network-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(156, 39, 176, 0.2);
  transition: border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.network-section .network-item .network-details {
  flex: 1;
}
.network-section .network-item .network-details h3 {
  color: #7B1FA2;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.network-section .network-item .network-details .network-role {
  color: #F57C00;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.network-section .network-item .network-details .network-description {
  color: #6D6D9C;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.resume-section .resume-card {
  background-color: #F8F4FE;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.12);
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.resume-section .resume-card .resume-preview {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (max-width: 575px) {
  .resume-section .resume-card .resume-preview {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.resume-section .resume-card .resume-preview .resume-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: rgba(245, 124, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #F57C00;
  border: 2px solid rgba(245, 124, 0, 0.2);
}
.resume-section .resume-card .resume-preview .resume-details {
  flex: 1;
}
.resume-section .resume-card .resume-preview .resume-details h3 {
  color: #7B1FA2;
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.resume-section .resume-card .resume-preview .resume-details .resume-description {
  color: #1A1A2E;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.resume-section .resume-card .resume-preview .resume-details .resume-meta {
  color: #6D6D9C;
  font-size: 0.9rem;
}
.resume-section .resume-card .resume-preview .resume-details .resume-meta .update-date {
  font-weight: 600;
  color: #F57C00;
}
.resume-section .resume-card .resume-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 575px) {
  .resume-section .resume-card .resume-actions {
    flex-direction: column;
  }
}
.resume-section .resume-card .resume-actions .btn {
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.resume-section .resume-card .resume-actions .btn i {
  font-size: 0.9rem;
}
.resume-section .resume-card .resume-actions .btn:hover {
  transform: translateY(-1px);
}

.resume-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(156, 39, 176, 0.2);
}
.resume-item:last-child {
  border-bottom: none;
}
.resume-item .resume-header {
  margin-bottom: 1rem;
}
.resume-item .resume-header .resume-meta {
  color: #6D6D9C;
  font-style: italic;
}
.resume-item .resume-details {
  padding-left: 1.25rem;
}

.certification-card {
  background-color: #F8F4FE;
  padding: 1.5rem;
  border-radius: 8px;
}
.certification-card .issuer, .certification-card .issue-date {
  color: #6D6D9C;
  font-size: 0.875rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.contact-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.contact-list li i {
  margin-right: 1rem;
  width: 1.5rem;
  color: #F57C00;
}

.site-header {
  background-color: #fff;
  padding: 1rem 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.site-header .logo a {
  color: #7B1FA2;
  text-decoration: none;
}
.site-header .main-nav .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .site-header .main-nav .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #FEFEFE;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  }
  .site-header .main-nav .nav-menu.active {
    right: 0;
  }
}
.site-header .main-nav .nav-menu li {
  margin-left: 1.5rem;
}
@media (max-width: 767px) {
  .site-header .main-nav .nav-menu li {
    margin: 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(156, 39, 176, 0.2);
  }
}
.site-header .main-nav .nav-menu a {
  color: #1A1A2E;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.site-header .main-nav .nav-menu a:hover, .site-header .main-nav .nav-menu a.active {
  color: #F57C00;
}
.site-header .main-nav .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .site-header .main-nav .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }
}
.site-header .main-nav .mobile-menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #1A1A2E;
  transition: all 0.3s;
}
.site-header .main-nav .mobile-menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header .main-nav .mobile-menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.site-header .main-nav .mobile-menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-footer {
  background-color: #1a1a1a;
  color: #f5f5f5;
  padding: 1.5rem 0;
  margin-top: 4rem;
  position: relative;
}
.site-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 575px) {
  .site-footer .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.site-footer .copyright p {
  margin: 0;
  font-size: 0.9rem;
}
.site-footer .theme-toggle-container {
  position: relative;
}
.site-footer .theme-toggle-container .theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  color: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  min-width: 60px;
  justify-content: center;
}
.site-footer .theme-toggle-container .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.site-footer .theme-toggle-container .theme-toggle .theme-icon {
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: absolute;
}
.site-footer .theme-toggle-container .theme-toggle .theme-icon.light-icon {
  opacity: 1;
  transform: translateY(0);
}
.site-footer .theme-toggle-container .theme-toggle .theme-icon.dark-icon {
  opacity: 0;
  transform: translateY(10px);
}
@media (max-width: 575px) {
  .site-footer .theme-toggle-container .theme-toggle {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}
.site-footer .theme-toggle-container .theme-dropdown {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 120px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-bottom: 0.5rem;
}
.site-footer .theme-toggle-container .theme-dropdown.show {
  display: flex;
}
@media (max-width: 575px) {
  .site-footer .theme-toggle-container .theme-dropdown {
    right: 50%;
    transform: translateX(50%);
  }
}
.site-footer .theme-toggle-container .theme-dropdown .theme-option {
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: #333;
  font-size: 0.9rem;
}
.site-footer .theme-toggle-container .theme-dropdown .theme-option:hover {
  background: rgba(0, 0, 0, 0.05);
}
.site-footer .theme-toggle-container .theme-dropdown .theme-option.active {
  background: rgba(123, 31, 162, 0.1);
  color: #7B1FA2;
}
.site-footer .theme-toggle-container .theme-dropdown .theme-option i {
  width: 16px;
  text-align: center;
}
@media (max-width: 575px) {
  .site-footer .theme-toggle-container .theme-toggle span {
    display: none;
  }
}

.home-main .hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 3rem;
  overflow: hidden;
}
.home-main .hero.parallax-banner .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background: url("../assets/images/placeholder.webp") center center/cover no-repeat;
  background-attachment: fixed;
  transform: translate3d(-50%, -50%, 0) scale(1.1);
  top: 50%;
  left: 50%;
  z-index: 1;
}
@media (max-width: 767px) {
  .home-main .hero.parallax-banner .parallax-bg {
    background-attachment: scroll;
    width: 100%;
    height: 100%;
    transform: translate3d(-50%, -50%, 0);
  }
}
.home-main .hero.parallax-banner .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.7) 0%, rgba(123, 31, 162, 0.5) 50%, rgba(245, 124, 0, 0.3) 100%);
  z-index: 2;
}
.home-main .hero.parallax-banner .container {
  position: relative;
  z-index: 3;
}
.home-main .hero.parallax-banner .hero-content {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}
.home-main .hero.parallax-banner .hero-content::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: -3rem;
  right: -3rem;
  bottom: -3rem;
  background: linear-gradient(45deg, transparent 30%, rgba(156, 39, 176, 0.3) 32%, rgba(156, 39, 176, 0.3) 34%, transparent 36%), linear-gradient(-45deg, transparent 30%, rgba(255, 152, 0, 0.25) 32%, rgba(255, 152, 0, 0.25) 34%, transparent 36%), linear-gradient(45deg, transparent 60%, rgba(77, 182, 172, 0.2) 62%, rgba(77, 182, 172, 0.2) 64%, transparent 66%), linear-gradient(-45deg, transparent 60%, rgba(123, 31, 162, 0.3) 62%, rgba(123, 31, 162, 0.3) 64%, transparent 66%), radial-gradient(circle at 20% 30%, rgba(156, 39, 176, 0.4) 0%, transparent 25%), radial-gradient(circle at 80% 70%, rgba(255, 152, 0, 0.3) 0%, transparent 25%), radial-gradient(circle at 60% 20%, rgba(77, 182, 172, 0.25) 0%, transparent 20%);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 30px rgba(156, 39, 176, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
  z-index: -1;
  animation: stainedGlassShimmer 8s ease-in-out infinite;
}
@media (max-width: 767px) {
  .home-main .hero.parallax-banner .hero-content::before {
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: -2rem;
  }
}
@media (max-width: 575px) {
  .home-main .hero.parallax-banner .hero-content::before {
    top: -1.5rem;
    left: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
  }
}
.home-main .hero.parallax-banner .hero-content::after {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  right: -2.5rem;
  bottom: -2.5rem;
  background: linear-gradient(135deg, transparent 40%, rgba(74, 20, 140, 0.2) 42%, rgba(74, 20, 140, 0.2) 44%, transparent 46%), linear-gradient(45deg, transparent 70%, rgba(230, 81, 0, 0.2) 72%, rgba(230, 81, 0, 0.2) 74%, transparent 76%);
  border-radius: 12px;
  z-index: -1;
}
@media (max-width: 575px) {
  .home-main .hero.parallax-banner .hero-content::after {
    top: -1.5rem;
    left: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
  }
}
.home-main .hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: white;
}
@media (max-width: 767px) {
  .home-main .hero h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .home-main .hero h1 {
    font-size: 2.2rem;
  }
}
.home-main .hero .tagline {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  .home-main .hero .tagline {
    font-size: 1.25rem;
  }
}
.home-main .hero .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.home-main .hero .cta-buttons .btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.home-main .hero .cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}
.home-main .quick-info .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}
.home-main .quick-info .info-card {
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.home-main .quick-info .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@keyframes stainedGlassShimmer {
  0%, 100% {
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  25% {
    box-shadow: 0 0 35px rgba(255, 152, 0, 0.4), inset 0 0 25px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 152, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(77, 182, 172, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(77, 182, 172, 0.25);
  }
  75% {
    box-shadow: 0 0 35px rgba(123, 31, 162, 0.4), inset 0 0 25px rgba(255, 255, 255, 0.15);
    border-color: rgba(123, 31, 162, 0.3);
  }
}
.contact-simple {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-simple .contact-intro {
  margin-bottom: 4rem;
}
.contact-simple .contact-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #7B1FA2;
}
.contact-simple .contact-intro p {
  font-size: 1.25rem;
  color: #6D6D9C;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.contact-simple .contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-simple .contact-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.contact-simple .contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  background-color: #F8F4FE;
  border-radius: 8px;
  text-decoration: none;
  color: #1A1A2E;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid transparent;
}
.contact-simple .contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #1A1A2E;
}
.contact-simple .contact-method.email:hover {
  border-color: #F57C00;
}
.contact-simple .contact-method.email:hover .contact-icon {
  background-color: #F57C00;
  color: white;
}
.contact-simple .contact-method.linkedin:hover {
  border-color: #0077b5;
}
.contact-simple .contact-method.linkedin:hover .contact-icon {
  background-color: #0077b5;
  color: white;
}
.contact-simple .contact-method .contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: rgba(245, 124, 0, 0.1);
  color: #F57C00;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.contact-simple .contact-method .contact-icon i {
  font-size: 2rem;
}
.contact-simple .contact-method .contact-details {
  text-align: center;
}
.contact-simple .contact-method .contact-details h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #7B1FA2;
}
.contact-simple .contact-method .contact-details p {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.contact-simple .contact-method .contact-details .contact-note {
  font-size: 0.9rem;
  color: #6D6D9C;
  font-style: italic;
}

.education-content .intro-text {
  margin-bottom: 2rem;
  max-width: 800px;
}
.education-content .intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.education-content .courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .education-content .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.education-content .course-card {
  background-color: #F8F4FE;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.education-content .course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.education-content .course-card .course-image {
  height: 200px;
}
.education-content .course-card .course-image .image-placeholder {
  height: 100%;
}
.education-content .course-card .course-details {
  padding: 1.5rem;
}
.education-content .course-card .course-details h3 {
  margin-bottom: 0.5rem;
}
.education-content .course-card .course-details .course-category {
  color: #6D6D9C;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.education-content .course-card .course-details .course-desc {
  margin-bottom: 1.25rem;
}
.education-content .course-card .course-details .course-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #6D6D9C;
}
.education-content .course-card .course-details .course-meta span {
  display: flex;
  align-items: center;
}
.education-content .course-card .course-details .course-meta span i {
  margin-right: 0.5rem;
}
.education-content .tutorials-list {
  margin-bottom: 3rem;
}
.education-content .tutorial-item {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(156, 39, 176, 0.2);
}
.education-content .tutorial-item:last-child {
  border-bottom: none;
}
.education-content .tutorial-item h3 {
  margin-bottom: 0.5rem;
}
.education-content .tutorial-item .tutorial-date {
  color: #6D6D9C;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.education-content .tutorial-item .tutorial-desc {
  margin-bottom: 1rem;
}
.education-content .tutorial-item .tutorial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.education-content .tutorial-item .tutorial-tags .tag {
  background-color: rgba(245, 124, 0, 0.1);
  color: #F57C00;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
}
.education-content .tutorial-item .read-more {
  display: inline-block;
}
.education-content .resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .education-content .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.education-content .resource-card {
  background-color: #F8F4FE;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.education-content .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.education-content .resource-card h3 {
  margin-bottom: 1rem;
}
.education-content .resource-card h3 i {
  margin-right: 0.5rem;
  color: #F57C00;
}
.education-content .resource-card p {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.education-content .resource-card .btn {
  margin: 0 auto;
}

.project-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .project-categories {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.project-category-card {
  background-color: #F8F4FE;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(74, 20, 140, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 280px;
}
@media (min-width: 768px) {
  .project-category-card {
    flex-basis: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
.project-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 20, 140, 0.15);
}
.project-category-card .category-image {
  background-color: rgba(156, 39, 176, 0.1);
  padding: 2rem;
  text-align: center;
}
.project-category-card .category-image .image-placeholder {
  align-items: center;
  color: white;
  display: flex;
  height: 120px;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
.project-category-card .category-details {
  padding: 1.5rem;
}
.project-category-card .category-details h2 {
  color: #7B1FA2;
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}
.project-category-card .category-details p {
  color: #6D6D9C;
  margin-bottom: 1.25rem;
}
.project-category-card .category-details .category-subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.project-category-card .category-details .subcategory-tag {
  background-color: rgba(123, 31, 162, 0.1);
  border-radius: 20px;
  color: #7B1FA2;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
}
.project-category-card .category-details .category-links {
  margin-top: auto;
}

.projects-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(74, 20, 140, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 20, 140, 0.15);
}
.project-card .project-image {
  background-color: rgba(156, 39, 176, 0.05);
  height: 180px;
  overflow: hidden;
}
.project-card .project-image .image-placeholder {
  align-items: center;
  background-color: rgba(156, 39, 176, 0.1);
  color: #7B1FA2;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.project-card .project-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem;
}
.project-card .project-details h2 {
  color: #1A1A2E;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.project-card .project-details .project-category {
  color: #7B1FA2;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.project-card .project-details .project-desc {
  color: #6D6D9C;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.project-card .project-details .project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.project-card .project-details .project-technologies .tech-tag {
  background-color: rgba(245, 124, 0, 0.1);
  border-radius: 4px;
  color: #F57C00;
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
}
.project-card .project-details .project-technologies .tech-tag.tech-green {
  background-color: rgba(0, 137, 123, 0.1);
  color: #00897B;
}
.project-card .project-details .project-links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}
.project-card .project-details .project-links .external-link {
  align-items: center;
  color: #6D6D9C;
  display: flex;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.project-card .project-details .project-links .external-link:hover {
  color: #7B1FA2;
}

.category-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.category-navigation .filter-btn {
  background-color: transparent;
  border: 1px solid rgba(156, 39, 176, 0.2);
  border-radius: 20px;
  color: #6D6D9C;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}
.category-navigation .filter-btn:hover {
  background-color: rgba(123, 31, 162, 0.05);
  border-color: rgba(123, 31, 162, 0.2);
}
.category-navigation .filter-btn.active {
  background-color: #7B1FA2;
  border-color: #7B1FA2;
  color: white;
}

.breadcrumbs {
  color: #6D6D9C;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  margin-top: -1rem;
}
.breadcrumbs a {
  color: #7B1FA2;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  color: #6D6D9C;
}

[data-theme=dark] {
  color: #E8E8F5;
  background-color: #0F0F1A;
}
[data-theme=dark] ::-moz-selection {
  background: rgba(156, 39, 176, 0.3);
  color: #E8E8F5;
}
[data-theme=dark] ::selection {
  background: rgba(156, 39, 176, 0.3);
  color: #E8E8F5;
}
[data-theme=dark] body {
  background-color: #0F0F1A;
}
[data-theme=dark] h1, [data-theme=dark] h2, [data-theme=dark] h3, [data-theme=dark] h4, [data-theme=dark] h5, [data-theme=dark] h6 {
  color: #E8E8F5;
}
[data-theme=dark] h3 {
  color: rgb(195.0395348837, 76.1348837209, 215.3651162791) !important;
}
[data-theme=dark] p {
  color: #E8E8F5;
}
[data-theme=dark] ul, [data-theme=dark] ol {
  color: #E8E8F5;
}
[data-theme=dark] li {
  color: #E8E8F5;
}
[data-theme=dark] a {
  color: #FF9800;
}
[data-theme=dark] a:hover {
  color: rgb(255, 172.6, 51);
}
[data-theme=dark] .site-header {
  background-color: #1A1A2E;
  border-bottom: 1px solid rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .site-header .logo a {
  color: #9C27B0;
}
[data-theme=dark] .site-header .nav-menu a {
  color: #E8E8F5;
}
[data-theme=dark] .site-header .nav-menu a:hover, [data-theme=dark] .site-header .nav-menu a.active {
  color: #FF9800;
}
[data-theme=dark] .site-header .mobile-menu-toggle .bar {
  background-color: #E8E8F5;
}
@media (max-width: 767px) {
  [data-theme=dark] .site-header .nav-menu {
    background-color: #0F0F1A;
    border-left: 1px solid rgba(156, 39, 176, 0.3);
  }
}
[data-theme=dark] .info-card,
[data-theme=dark] .light-bg,
[data-theme=dark] .education-info,
[data-theme=dark] .certification-card {
  background-color: #242444;
  border: 1px solid rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .project-card {
  background-color: #242444;
  border: 1px solid rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .project-card .project-category {
  color: #B8B8D4;
}
[data-theme=dark] .project-card .external-link {
  color: #B8B8D4;
}
[data-theme=dark] .project-card .external-link:hover {
  color: #FF9800;
}
[data-theme=dark] .university-details .university-description {
  color: #B8B8D4;
}
[data-theme=dark] .light-text,
[data-theme=dark] .resume-meta,
[data-theme=dark] .issuer,
[data-theme=dark] .issue-date,
[data-theme=dark] .job-title {
  color: #B8B8D4;
}
[data-theme=dark] .course-category,
[data-theme=dark] .course-meta,
[data-theme=dark] .tutorial-date,
[data-theme=dark] .university-description,
[data-theme=dark] .graduation-year {
  color: #B8B8D4;
}
[data-theme=dark] .project-desc,
[data-theme=dark] .breadcrumbs,
[data-theme=dark] .breadcrumbs span {
  color: #B8B8D4;
}
[data-theme=dark] .breadcrumbs a {
  color: #9C27B0;
}
[data-theme=dark] .breadcrumbs a:hover {
  color: rgb(188.0418604651, 55.2604651163, 210.7395348837);
}
[data-theme=dark] .note,
[data-theme=dark] .contact-note {
  color: #B8B8D4;
}
[data-theme=dark] .contact-intro h2 {
  color: #9C27B0;
}
[data-theme=dark] .contact-intro p {
  color: #B8B8D4;
}
[data-theme=dark] .filter-btn {
  color: #E8E8F5;
  border-color: rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .filter-btn:hover {
  background-color: rgba(156, 39, 176, 0.1);
  border-color: #9C27B0;
}
[data-theme=dark] .filter-btn.active {
  background-color: #9C27B0;
  border-color: #9C27B0;
  color: #0F0F1A;
}
[data-theme=dark] .tech-tag,
[data-theme=dark] .subcategory-tag,
[data-theme=dark] .tag {
  background-color: rgba(156, 39, 176, 0.15);
  color: #9C27B0;
}
[data-theme=dark] .tech-tag.tech-green,
[data-theme=dark] .subcategory-tag.tech-green,
[data-theme=dark] .tag.tech-green {
  background-color: rgba(77, 182, 172, 0.15);
  color: #4DB6AC;
}
[data-theme=dark] .university-details h3 {
  color: #9C27B0;
}
[data-theme=dark] .degree {
  color: #E8E8F5 !important;
  font-weight: 600;
}
[data-theme=dark] .text-purple {
  color: #9C27B0;
}
[data-theme=dark] .text-orange {
  color: #FF9800;
}
[data-theme=dark] .text-green {
  color: #4DB6AC;
}
[data-theme=dark] input, [data-theme=dark] textarea, [data-theme=dark] select {
  background-color: #242444;
  border-color: rgba(156, 39, 176, 0.3);
  color: #E8E8F5;
}
[data-theme=dark] input::placeholder, [data-theme=dark] textarea::placeholder, [data-theme=dark] select::placeholder {
  color: #B8B8D4;
}
[data-theme=dark] input:focus, [data-theme=dark] textarea:focus, [data-theme=dark] select:focus {
  border-color: #9C27B0;
  box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.2);
}
[data-theme=dark] label {
  color: #E8E8F5;
}
[data-theme=dark] .btn:not(.btn-primary):not(.btn-secondary):not(.btn-tertiary):not(.btn-mix):not(.btn-tricolor) {
  background-color: #242444;
  color: #E8E8F5;
  border-color: rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .btn:not(.btn-primary):not(.btn-secondary):not(.btn-tertiary):not(.btn-mix):not(.btn-tricolor):hover {
  background-color: rgb(44.8269230769, 44.8269230769, 84.6730769231);
  border-color: #9C27B0;
  color: #9C27B0;
}
[data-theme=dark] .btn.btn-outline {
  border-color: #9C27B0;
  color: #9C27B0;
}
[data-theme=dark] .btn.btn-outline:hover {
  background-color: rgba(156, 39, 176, 0.1);
}
[data-theme=dark] .btn.btn-outline.btn-orange {
  border-color: #FF9800;
  color: #FF9800;
}
[data-theme=dark] .btn.btn-outline.btn-orange:hover {
  background-color: rgba(255, 152, 0, 0.1);
}
[data-theme=dark] .btn.btn-outline.btn-green {
  border-color: #4DB6AC;
  color: #4DB6AC;
}
[data-theme=dark] .btn.btn-outline.btn-green:hover {
  background-color: rgba(77, 182, 172, 0.1);
}
[data-theme=dark] .resume-item {
  border-bottom-color: rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .timeline:before {
  background-color: rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .contact-list i {
  color: #FF9800;
}
[data-theme=dark] .category-card,
[data-theme=dark] .project-category-card {
  background-color: #242444;
  border: 1px solid rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .category-card:hover,
[data-theme=dark] .project-category-card:hover {
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.15);
}
[data-theme=dark] .category-card .category-image,
[data-theme=dark] .project-category-card .category-image {
  background-color: rgba(156, 39, 176, 0.1);
}
[data-theme=dark] .category-card .category-details h2,
[data-theme=dark] .project-category-card .category-details h2 {
  color: #E8E8F5;
}
[data-theme=dark] .category-card .category-details p,
[data-theme=dark] .project-category-card .category-details p {
  color: #B8B8D4;
}
[data-theme=dark] .category-card .category-subcategories .subcategory-tag,
[data-theme=dark] .project-category-card .category-subcategories .subcategory-tag {
  background-color: rgba(156, 39, 176, 0.15);
  color: #9C27B0;
}
[data-theme=dark] .project-card .project-image {
  background-color: rgba(156, 39, 176, 0.05);
}
[data-theme=dark] .project-card .project-image .image-placeholder {
  background-color: rgba(156, 39, 176, 0.1);
  color: #9C27B0;
}
[data-theme=dark] .course-card,
[data-theme=dark] .resource-card {
  background-color: #242444;
  border: 1px solid rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .course-card .course-image,
[data-theme=dark] .course-card .project-image,
[data-theme=dark] .resource-card .course-image,
[data-theme=dark] .resource-card .project-image {
  background-color: rgba(156, 39, 176, 0.05);
}
[data-theme=dark] .course-card .course-image .image-placeholder,
[data-theme=dark] .course-card .project-image .image-placeholder,
[data-theme=dark] .resource-card .course-image .image-placeholder,
[data-theme=dark] .resource-card .project-image .image-placeholder {
  background-color: rgba(156, 39, 176, 0.1);
  color: #9C27B0;
}
[data-theme=dark] .course-card h3 i,
[data-theme=dark] .resource-card h3 i {
  color: #FF9800;
}
[data-theme=dark] .network-item {
  background-color: #242444;
  border: 1px solid rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .network-item:hover {
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.15);
}
[data-theme=dark] .network-item .network-image img {
  border-color: rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .network-item .network-details h3 {
  color: #9C27B0;
}
[data-theme=dark] .network-item .network-details .network-role {
  color: #FF9800;
}
[data-theme=dark] .network-item .network-details .network-description {
  color: #B8B8D4;
}
[data-theme=dark] .resume-card {
  background-color: #242444;
  border: 1px solid rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .resume-card .resume-icon {
  background-color: rgba(255, 152, 0, 0.15);
  color: #FF9800;
  border-color: rgba(255, 152, 0, 0.3);
}
[data-theme=dark] .resume-card .resume-details h3 {
  color: #9C27B0;
}
[data-theme=dark] .resume-card .resume-details .resume-description {
  color: #E8E8F5 !important;
}
[data-theme=dark] .resume-card .resume-details .resume-meta {
  color: #B8B8D4;
}
[data-theme=dark] .resume-card .resume-details .resume-meta .update-date {
  color: #FF9800;
}
[data-theme=dark] .contact-method {
  background-color: #242444;
  border: 2px solid transparent;
  color: #E8E8F5;
}
[data-theme=dark] .contact-method:hover {
  color: #E8E8F5;
}
[data-theme=dark] .contact-method.email:hover {
  border-color: #FF9800;
}
[data-theme=dark] .contact-method.email:hover .contact-icon {
  background-color: #FF9800;
  color: #0F0F1A;
}
[data-theme=dark] .contact-method.linkedin:hover {
  border-color: #0077b5;
}
[data-theme=dark] .contact-method.linkedin:hover .contact-icon {
  background-color: #0077b5;
  color: white;
}
[data-theme=dark] .contact-method .contact-icon {
  background-color: rgba(255, 152, 0, 0.15);
  color: #FF9800;
}
[data-theme=dark] .contact-method .contact-details h3 {
  color: #9C27B0;
}
[data-theme=dark] .contact-method .contact-details p {
  color: #E8E8F5;
}
[data-theme=dark] .contact-method .contact-details .contact-note {
  color: #B8B8D4;
}
[data-theme=dark] .site-footer {
  background-color: rgb(18.7317073171, 18.7317073171, 32.4682926829);
  border-top: 1px solid rgba(156, 39, 176, 0.3);
}
[data-theme=dark] .site-footer .theme-toggle .light-icon {
  opacity: 0;
  transform: translateY(-10px);
}
[data-theme=dark] .site-footer .theme-toggle .dark-icon {
  opacity: 1;
  transform: translateY(0);
}
[data-theme=dark] .site-footer .theme-toggle .theme-option {
  color: #E8E8F5;
}
[data-theme=dark] .site-footer .theme-toggle .theme-option:hover {
  background: rgba(255, 255, 255, 0.05);
}
[data-theme=dark] .site-footer .theme-toggle .theme-option.active {
  background: rgba(156, 39, 176, 0.15);
  color: #9C27B0;
}
[data-theme=dark] .hero .hero-overlay {
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.8) 0%, rgba(123, 31, 162, 0.6) 50%, rgba(245, 124, 0, 0.4) 100%);
}

@media (prefers-color-scheme: dark) {
  [data-theme=auto] {
    color: #E8E8F5;
    background-color: #0F0F1A;
  }
  [data-theme=auto] ::-moz-selection {
    background: rgba(156, 39, 176, 0.3);
    color: #E8E8F5;
  }
  [data-theme=auto] ::selection {
    background: rgba(156, 39, 176, 0.3);
    color: #E8E8F5;
  }
  [data-theme=auto] body {
    background-color: #0F0F1A;
  }
  [data-theme=auto] h1, [data-theme=auto] h2, [data-theme=auto] h3, [data-theme=auto] h4, [data-theme=auto] h5, [data-theme=auto] h6 {
    color: #E8E8F5;
  }
  [data-theme=auto] h3 {
    color: rgb(195.0395348837, 76.1348837209, 215.3651162791) !important;
  }
  [data-theme=auto] p {
    color: #E8E8F5;
  }
  [data-theme=auto] ul, [data-theme=auto] ol {
    color: #E8E8F5;
  }
  [data-theme=auto] li {
    color: #E8E8F5;
  }
  [data-theme=auto] a {
    color: #FF9800;
  }
  [data-theme=auto] a:hover {
    color: rgb(255, 172.6, 51);
  }
  [data-theme=auto] .site-header {
    background-color: #1A1A2E;
    border-bottom: 1px solid rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .site-header .logo a {
    color: #9C27B0;
  }
  [data-theme=auto] .site-header .nav-menu a {
    color: #E8E8F5;
  }
  [data-theme=auto] .site-header .nav-menu a:hover, [data-theme=auto] .site-header .nav-menu a.active {
    color: #FF9800;
  }
  [data-theme=auto] .site-header .mobile-menu-toggle .bar {
    background-color: #E8E8F5;
  }
}
@media (prefers-color-scheme: dark) and (max-width: 767px) {
  [data-theme=auto] .site-header .nav-menu {
    background-color: #0F0F1A;
    border-left: 1px solid rgba(156, 39, 176, 0.3);
  }
}
@media (prefers-color-scheme: dark) {
  [data-theme=auto] .info-card,
  [data-theme=auto] .light-bg,
  [data-theme=auto] .education-info,
  [data-theme=auto] .certification-card {
    background-color: #242444;
    border: 1px solid rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .project-card {
    background-color: #242444;
    border: 1px solid rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .project-card .project-category {
    color: #B8B8D4;
  }
  [data-theme=auto] .project-card .external-link {
    color: #B8B8D4;
  }
  [data-theme=auto] .project-card .external-link:hover {
    color: #FF9800;
  }
  [data-theme=auto] .university-details .university-description {
    color: #B8B8D4;
  }
  [data-theme=auto] .light-text,
  [data-theme=auto] .resume-meta,
  [data-theme=auto] .issuer,
  [data-theme=auto] .issue-date,
  [data-theme=auto] .job-title {
    color: #B8B8D4;
  }
  [data-theme=auto] .course-category,
  [data-theme=auto] .course-meta,
  [data-theme=auto] .tutorial-date,
  [data-theme=auto] .university-description,
  [data-theme=auto] .graduation-year {
    color: #B8B8D4;
  }
  [data-theme=auto] .project-desc,
  [data-theme=auto] .breadcrumbs,
  [data-theme=auto] .breadcrumbs span {
    color: #B8B8D4;
  }
  [data-theme=auto] .breadcrumbs a {
    color: #9C27B0;
  }
  [data-theme=auto] .breadcrumbs a:hover {
    color: rgb(188.0418604651, 55.2604651163, 210.7395348837);
  }
  [data-theme=auto] .note {
    color: #B8B8D4;
  }
  [data-theme=auto] .filter-btn {
    color: #E8E8F5;
    border-color: rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .filter-btn:hover {
    background-color: rgba(156, 39, 176, 0.1);
    border-color: #9C27B0;
  }
  [data-theme=auto] .filter-btn.active {
    background-color: #9C27B0;
    border-color: #9C27B0;
    color: #0F0F1A;
  }
  [data-theme=auto] .tech-tag,
  [data-theme=auto] .subcategory-tag,
  [data-theme=auto] .tag {
    background-color: rgba(156, 39, 176, 0.15);
    color: #9C27B0;
  }
  [data-theme=auto] .tech-tag.tech-green,
  [data-theme=auto] .subcategory-tag.tech-green,
  [data-theme=auto] .tag.tech-green {
    background-color: rgba(77, 182, 172, 0.15);
    color: #4DB6AC;
  }
  [data-theme=auto] .university-details h3 {
    color: #9C27B0;
  }
  [data-theme=auto] .degree {
    color: #E8E8F5 !important;
    font-weight: 600;
  }
  [data-theme=auto] .text-purple {
    color: #9C27B0;
  }
  [data-theme=auto] .text-orange {
    color: #FF9800;
  }
  [data-theme=auto] .text-green {
    color: #4DB6AC;
  }
  [data-theme=auto] input, [data-theme=auto] textarea, [data-theme=auto] select {
    background-color: #242444;
    border-color: rgba(156, 39, 176, 0.3);
    color: #E8E8F5;
  }
  [data-theme=auto] input::placeholder, [data-theme=auto] textarea::placeholder, [data-theme=auto] select::placeholder {
    color: #B8B8D4;
  }
  [data-theme=auto] input:focus, [data-theme=auto] textarea:focus, [data-theme=auto] select:focus {
    border-color: #9C27B0;
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.2);
  }
  [data-theme=auto] label {
    color: #E8E8F5;
  }
  [data-theme=auto] .btn:not(.btn-primary):not(.btn-secondary):not(.btn-tertiary):not(.btn-mix):not(.btn-tricolor) {
    background-color: #242444;
    color: #E8E8F5;
    border-color: rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .btn:not(.btn-primary):not(.btn-secondary):not(.btn-tertiary):not(.btn-mix):not(.btn-tricolor):hover {
    background-color: rgb(44.8269230769, 44.8269230769, 84.6730769231);
    border-color: #9C27B0;
    color: #9C27B0;
  }
  [data-theme=auto] .btn.btn-outline {
    border-color: #9C27B0;
    color: #9C27B0;
  }
  [data-theme=auto] .btn.btn-outline:hover {
    background-color: rgba(156, 39, 176, 0.1);
  }
  [data-theme=auto] .btn.btn-outline.btn-orange {
    border-color: #FF9800;
    color: #FF9800;
  }
  [data-theme=auto] .btn.btn-outline.btn-orange:hover {
    background-color: rgba(255, 152, 0, 0.1);
  }
  [data-theme=auto] .btn.btn-outline.btn-green {
    border-color: #4DB6AC;
    color: #4DB6AC;
  }
  [data-theme=auto] .btn.btn-outline.btn-green:hover {
    background-color: rgba(77, 182, 172, 0.1);
  }
  [data-theme=auto] .resume-item {
    border-bottom-color: rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .timeline:before {
    background-color: rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .contact-list i {
    color: #FF9800;
  }
  [data-theme=auto] .category-card,
  [data-theme=auto] .project-category-card {
    background-color: #242444;
    border: 1px solid rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .category-card:hover,
  [data-theme=auto] .project-category-card:hover {
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.15);
  }
  [data-theme=auto] .category-card .category-image,
  [data-theme=auto] .project-category-card .category-image {
    background-color: rgba(156, 39, 176, 0.1);
  }
  [data-theme=auto] .category-card .category-details h2,
  [data-theme=auto] .project-category-card .category-details h2 {
    color: #E8E8F5;
  }
  [data-theme=auto] .category-card .category-details p,
  [data-theme=auto] .project-category-card .category-details p {
    color: #B8B8D4;
  }
  [data-theme=auto] .category-card .category-subcategories .subcategory-tag,
  [data-theme=auto] .project-category-card .category-subcategories .subcategory-tag {
    background-color: rgba(156, 39, 176, 0.15);
    color: #9C27B0;
  }
  [data-theme=auto] .project-card .project-image {
    background-color: rgba(156, 39, 176, 0.05);
  }
  [data-theme=auto] .project-card .project-image .image-placeholder {
    background-color: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
  }
  [data-theme=auto] .course-card,
  [data-theme=auto] .resource-card {
    background-color: #242444;
    border: 1px solid rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .course-card .course-image,
  [data-theme=auto] .course-card .project-image,
  [data-theme=auto] .resource-card .course-image,
  [data-theme=auto] .resource-card .project-image {
    background-color: rgba(156, 39, 176, 0.05);
  }
  [data-theme=auto] .course-card .course-image .image-placeholder,
  [data-theme=auto] .course-card .project-image .image-placeholder,
  [data-theme=auto] .resource-card .course-image .image-placeholder,
  [data-theme=auto] .resource-card .project-image .image-placeholder {
    background-color: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
  }
  [data-theme=auto] .course-card h3 i,
  [data-theme=auto] .resource-card h3 i {
    color: #FF9800;
  }
  [data-theme=auto] .network-item {
    background-color: #242444;
    border: 1px solid rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .network-item:hover {
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.15);
  }
  [data-theme=auto] .network-item .network-image img {
    border-color: rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .network-item .network-details h3 {
    color: #9C27B0;
  }
  [data-theme=auto] .network-item .network-details .network-role {
    color: #FF9800;
  }
  [data-theme=auto] .network-item .network-details .network-description {
    color: #B8B8D4;
  }
  [data-theme=auto] .resume-card {
    background-color: #242444;
    border: 1px solid rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .resume-card .resume-icon {
    background-color: rgba(255, 152, 0, 0.15);
    color: #FF9800;
    border-color: rgba(255, 152, 0, 0.3);
  }
  [data-theme=auto] .resume-card .resume-details h3 {
    color: #9C27B0;
  }
  [data-theme=auto] .resume-card .resume-details .resume-description {
    color: #E8E8F5 !important;
  }
  [data-theme=auto] .resume-card .resume-details .resume-meta {
    color: #B8B8D4;
  }
  [data-theme=auto] .resume-card .resume-details .resume-meta .update-date {
    color: #FF9800;
  }
  [data-theme=auto] .contact-card {
    background-color: #242444;
    border: 1px solid rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .contact-card .contact-icon {
    color: #FF9800;
  }
  [data-theme=auto] .contact-card .contact-icon.icon-green {
    color: #4DB6AC;
  }
  [data-theme=auto] .site-footer {
    background-color: rgb(18.7317073171, 18.7317073171, 32.4682926829);
    border-top: 1px solid rgba(156, 39, 176, 0.3);
  }
  [data-theme=auto] .site-footer .theme-toggle .light-icon {
    opacity: 0;
    transform: translateY(-10px);
  }
  [data-theme=auto] .site-footer .theme-toggle .dark-icon {
    opacity: 1;
    transform: translateY(0);
  }
  [data-theme=auto] .site-footer .theme-toggle .theme-option {
    color: #E8E8F5;
  }
  [data-theme=auto] .site-footer .theme-toggle .theme-option:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  [data-theme=auto] .site-footer .theme-toggle .theme-option.active {
    background: rgba(156, 39, 176, 0.15);
    color: #9C27B0;
  }
  [data-theme=auto] .hero .hero-overlay {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.8) 0%, rgba(123, 31, 162, 0.6) 50%, rgba(245, 124, 0, 0.4) 100%);
  }
}
#footer-placeholder {
  margin: 0;
  padding: 0;
  border: none;
}

.site-footer .copyright {
  border-top-width: 1px !important;
}

/*# sourceMappingURL=main.css.map */
