:root {
  /* Ubuntu Color Palette */
  --ubuntu-orange: #e95420;
  --ubuntu-light-orange: #f6b2a0;
  --ubuntu-purple: #77216f;
  --ubuntu-light-purple: #b8a1b8;
  --ubuntu-blue: #2c5aa0;
  --ubuntu-green: #38b44a;
  
  /* Neutral Colors */
  --dark-bg: #2d2d2d;
  --card-bg: #3c3c3c;
  --text-primary: #ffffff;
  --text-secondary: #d4d4d4;
  --text-muted: #888888;
  
  /* Ubuntu Terminal Colors */
  --terminal-bg: #1a1a1a;
  --terminal-border: #1a1a1a;
  --terminal-prompt: #e95420;
  --terminal-text: #ffffff;
  --terminal-accent: #38b44a;
  --terminal-user: #e95420;
  --terminal-host: #77216f;
  --terminal-path: #2c5aa0;
  
  /* Interactive States */
  --hover-bg: rgba(233, 84, 32, 0.1);
  --active-bg: rgba(233, 84, 32, 0.2);
  --transition-speed: 0.3s;
}

body {
  background: url('wallpaper.jpg') center center/cover no-repeat fixed;
  font-family: 'Inter', 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  margin-left: 100px; /* Space for sidebar */
  padding-top: 50px; /* Space for top panel */
}

/* Top Panel */
.top-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-panel-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.top-panel-center {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-panel-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.date-time {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Ubuntu Mono', monospace;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: right;
}

.portfolio-title {
  color: var(--ubuntu-orange);
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.ubuntu-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Ubuntu', sans-serif;
}

.ubuntu-logo svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.ubuntu-logo:hover svg {
  transform: scale(1.1);
}

.ubuntu-text {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 50px;
  width: 100px;
  height: calc(100vh - 50px);
  background: transparent;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
}

.sidebar-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
}

.icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  padding: 10px 6px;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.icon:hover {
  background: var(--ubuntu-orange);
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 84, 32, 0.4);
  border-color: var(--ubuntu-light-orange);
}

.icon:active {
  transform: scale(1.05) translateY(0px);
  transition: all 0.1s ease;
}

.icon.active {
  background: var(--ubuntu-orange);
  border-color: var(--ubuntu-light-orange);
  box-shadow: 0 6px 20px rgba(233, 84, 32, 0.5);
  transform: scale(1.1);
}

.icon-emoji {
  font-size: 28px;
  filter: grayscale(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.icon:hover .icon-emoji {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.icon-name {
  font-size: 9px;
  color: var(--text-primary);
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.3px;
}

.icon:hover .icon-name {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transform: translateY(-1px);
}

/* Add a subtle glow effect on hover */
.icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--ubuntu-orange), var(--ubuntu-light-orange));
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.icon:hover::before {
  opacity: 0.3;
}

/* Floating Windows - Dark Mode Default */
.floating-window {
  position: fixed;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1001;
  min-width: 400px;
  min-height: 300px;
  max-width: 80vw;
  max-height: 80vh;
  overflow: hidden;
  animation: windowAppear 0.3s ease-out;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  resize: none;
}

/* Minimization effects */
.floating-window.minimizing {
  z-index: 1003;
  pointer-events: none;
}

.floating-window.minimizing .window-content {
  opacity: 0;
  transform: scale(0.8);
}

.minimizing-content {
  transition: all 0.3s ease !important;
}


/* Smooth transitions for mode switching */
.floating-window.transitioning {
  transition: all 0.3s ease;
}

.floating-window.transitioning * {
  transition: all 0.3s ease;
}

@keyframes windowAppear {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.window-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  cursor: move;
  user-select: none;
  border-radius: 12px 12px 0 0;
}


.window-title {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  margin: 0 16px;
}

.window-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}


.window-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.window-btn.minimize {
  background: #ffbd2e;
}

.window-btn.maximize {
  background: #27ca3f;
}

.window-btn.close {
  background: #ff5f56;
}

.window-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.window-content {
  padding: 24px;
  color: #e0e0e0;
  height: calc(100% - 40px);
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
  max-height: calc(80vh - 40px);
  scrollbar-width: thin;
  scrollbar-color: #4a4a4a #1a1a1a;
  flex: 1;
  padding-bottom: 40px;
}


.window-content h1 {
  color: #ff6b35;
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.window-content h2 {
  color: #4fc3f7;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(79, 195, 247, 0.3);
}

.window-content h3 {
  color: #ba68c8;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 0 6px rgba(186, 104, 200, 0.3);
}

.window-content p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.window-content ul {
  color: #b0b0b0;
  margin-bottom: 12px;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.window-content li {
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.window-content a {
  color: #ff6b35;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  position: relative;
}

.window-content a:hover {
  color: #4fc3f7;
  text-decoration: underline;
  text-shadow: 0 0 5px rgba(79, 195, 247, 0.5);
}

/* Code and technical elements */
.window-content code {
  background: rgba(255, 255, 255, 0.1);
  color: #ff6b35;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Ubuntu Mono', monospace;
  font-size: 0.9em;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
}

/* Project Container Styles */
.project-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.project-card:hover::before {
  left: 100%;
}

.project-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 53, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.project-header h2 {
  color: #4fc3f7;
  font-size: 1.3rem;
  margin: 0;
  flex: 1;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
}

.project-badge {
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.project-badge.impact {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.project-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.project-description {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tech-tag {
  background: rgba(79, 195, 247, 0.15);
  color: #4fc3f7;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(79, 195, 247, 0.2);
  transition: all 0.3s ease;
  cursor: default;
}

.tech-tag:hover {
  background: rgba(79, 195, 247, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(79, 195, 247, 0.2);
}

.project-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
  color: #ff6b35;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

.project-link:hover::before {
  left: 100%;
}

.project-link:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
  color: #4fc3f7;
  border-color: rgba(79, 195, 247, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 53, 0.2);
}

.project-link span {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.project-link:hover span {
  transform: scale(1.1);
}

/* Timeline Styles */
.timeline-container {
  position: relative;
  margin-top: 30px;
  padding-left: 30px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ff6b35, #4fc3f7, #81c784, #ba68c8);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5), 0 0 25px rgba(79, 195, 247, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  opacity: 1;
  transform: translateX(0);
  animation: timelineSlideIn 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes timelineSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-marker {
  position: absolute;
  left: -35px;
  top: 20px;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.marker-dot {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.timeline-item:hover .marker-dot {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.7);
}

.timeline-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin-left: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.timeline-content:hover::before {
  left: 100%;
}

.timeline-content:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(79, 195, 247, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 15px;
}

.timeline-header h2 {
  color: #4fc3f7;
  font-size: 1.4rem;
  margin: 0;
  flex: 1;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
}

.timeline-badge {
  background: linear-gradient(135deg, #ba68c8, #ce93d8);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(186, 104, 200, 0.3);
  transition: all 0.3s ease;
}

.timeline-badge.current {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
  animation: currentPulse 2s infinite;
}

@keyframes currentPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.timeline-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(186, 104, 200, 0.4);
}

.timeline-content h3 {
  color: #81c784;
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(129, 199, 132, 0.3);
}

.timeline-period {
  color: #ff6b35;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

.timeline-content p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.timeline-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: rgba(79, 195, 247, 0.15);
  color: #4fc3f7;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(79, 195, 247, 0.2);
  transition: all 0.3s ease;
  cursor: default;
}

.skill-tag:hover {
  background: rgba(79, 195, 247, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(79, 195, 247, 0.2);
}

/* Achievement List Styles */
.achievement-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.achievement-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.achievement-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6b35;
  font-size: 0.8rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.achievement-list li:hover {
  color: #e0e0e0;
  transform: translateX(5px);
}

.achievement-list li:hover::before {
  color: #4fc3f7;
  transform: scale(1.2);
}

.achievement-list strong {
  color: #81c784;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(129, 199, 132, 0.3);
}

/* Education Container Styles */
.education-container {
  margin-top: 30px;
}

.education-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.education-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: educationSlideIn 0.8s ease-out forwards;
}

.education-item.current {
  animation-delay: 0.2s;
}

.education-item.completed {
  animation-delay: 0.6s;
}

@keyframes educationSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.education-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(79, 195, 247, 0.1));
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.education-item:hover .education-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(79, 195, 247, 0.5);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
}

.graduation-cap {
  font-size: 28px;
  transition: all 0.3s ease;
  animation: capFloat 3s ease-in-out infinite;
}

@keyframes capFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(2deg); }
}

.cap-tassel {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 3px;
  height: 15px;
  background: linear-gradient(180deg, #ff6b35, #ff8a65);
  border-radius: 2px;
  animation: tasselSwing 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes tasselSwing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

.education-content {
  flex: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.education-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.education-content:hover::before {
  left: 100%;
}

.education-content:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(79, 195, 247, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.degree-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 15px;
}

.degree-header h2 {
  color: #4fc3f7;
  font-size: 1.4rem;
  margin: 0;
  flex: 1;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
}

.degree-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.degree-badge.current {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
  animation: currentPulse 2s infinite;
}

.degree-badge.completed {
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.education-content h3 {
  color: #81c784;
  font-size: 1.1rem;
  margin: 0 0 15px 0;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(129, 199, 132, 0.3);
}

.university-info {
  margin-bottom: 15px;
}

.university-name {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.university-location {
  color: #b0b0b0;
  font-size: 0.9rem;
  font-style: italic;
}

.education-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.duration {
  color: #ff6b35;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.status-text {
  color: #4caf50;
  font-size: 0.9rem;
  font-weight: 500;
}

.gpa-display {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gpa-label {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.gpa-value {
  color: #ff6b35;
  font-size: 1.1rem;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.education-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.edu-skill-tag {
  background: rgba(79, 195, 247, 0.15);
  color: #4fc3f7;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(79, 195, 247, 0.2);
  transition: all 0.3s ease;
  cursor: default;
}

.edu-skill-tag:hover {
  background: rgba(79, 195, 247, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(79, 195, 247, 0.2);
}

.education-connector {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, #ff6b35, #4fc3f7);
  margin-left: 29px;
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  animation: connectorGlow 3s ease-in-out infinite;
}

@keyframes connectorGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 53, 0.3); }
  50% { box-shadow: 0 0 20px rgba(79, 195, 247, 0.5); }
}

.education-achievements {
  margin-top: 40px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.education-achievements h3 {
  color: #4fc3f7;
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.achievement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.achievement-item:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(79, 195, 247, 0.2);
}

.achievement-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.achievement-item:hover .achievement-icon {
  transform: scale(1.2) rotate(5deg);
}

.achievement-text {
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.achievement-item:hover .achievement-text {
  color: #4fc3f7;
  text-shadow: 0 0 5px rgba(79, 195, 247, 0.3);
}

/* Certifications Container Styles */
.certifications-container {
  margin-top: 30px;
}

.certification-category {
  margin-bottom: 40px;
}

.certification-category h2 {
  color: #4fc3f7;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
  border-bottom: 2px solid rgba(79, 195, 247, 0.3);
  padding-bottom: 10px;
}

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

.certification-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.certification-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.certification-item:hover::before {
  left: 100%;
}

.certification-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(79, 195, 247, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.cert-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.cert-header h3 {
  color: #81c784;
  font-size: 1.1rem;
  margin: 0;
  flex: 1;
  line-height: 1.3;
  text-shadow: 0 0 8px rgba(129, 199, 132, 0.3);
}

.cert-badge {
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.cert-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.certification-item p {
  color: #b0b0b0;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.certification-item strong {
  color: #4fc3f7;
  font-weight: 600;
}

.certification-item a {
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.certification-item a:hover {
  color: #4fc3f7;
  text-decoration: underline;
  text-shadow: 0 0 5px rgba(79, 195, 247, 0.3);
}

/* Ultra Cool Courses Section */
.courses-hero {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(79, 195, 247, 0.1) 50%, rgba(129, 199, 132, 0.1) 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.courses-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.courses-title {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.courses-title h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(45deg, #ff6b35, #4fc3f7, #81c784);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  margin: 0 0 15px 0;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.courses-title p {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin: 0;
  font-weight: 400;
}

.courses-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.courses-stats .stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 120px;
}

.courses-stats .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.courses-stats .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4fc3f7;
  text-shadow: 0 0 20px rgba(79, 195, 247, 0.5);
  margin-bottom: 8px;
}

.courses-stats .stat-label {
  color: #81c784;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(129, 199, 132, 0.3);
}

/* Enhanced Category Headers */
.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.category-icon {
  font-size: 2.5rem;
  margin-right: 20px;
  animation: float 3s ease-in-out infinite;
}

.category-header h3 {
  color: #4fc3f7;
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(79, 195, 247, 0.4);
  flex: 1;
}

.category-line {
  height: 3px;
  flex: 1;
  background: linear-gradient(90deg, #4fc3f7, transparent);
  margin-left: 20px;
  border-radius: 2px;
  position: relative;
}

.category-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20px;
  background: linear-gradient(90deg, #4fc3f7, transparent);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-20px); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
}

/* Enhanced Certification Items */
.cert-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.certification-item:hover .cert-glow {
  opacity: 1;
}

.cert-icon {
  font-size: 3rem;
  text-align: center;
  margin: 20px 0;
  animation: bounce 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.certification-item h4 {
  color: #81c784;
  font-size: 1.3rem;
  margin: 0 0 15px 0;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(129, 199, 132, 0.3);
  position: relative;
  z-index: 2;
}

.cert-footer {
  position: relative;
  z-index: 2;
}

.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 20px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cert-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
  transition: left 0.5s ease;
}

.cert-link:hover::before {
  left: 100%;
}

.cert-link:hover {
  color: #4fc3f7;
  background: rgba(79, 195, 247, 0.1);
  border-color: rgba(79, 195, 247, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
}

.link-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cert-link:hover .link-arrow {
  transform: translateX(5px);
}

/* Enhanced Badge Styles */
.cert-badge.coursera {
  background: linear-gradient(135deg, #0056d3, #4285f4) !important;
  color: white;
}

.cert-badge.ibm {
  background: linear-gradient(135deg, #0f62fe, #4589ff) !important;
  color: white;
}

.cert-badge.nvidia {
  background: linear-gradient(135deg, #76b900, #9acd32) !important;
  color: white;
}

.cert-badge.java {
  background: linear-gradient(135deg, #f89820, #ffa726) !important;
  color: white;
}

/* Skills Container Styles */
.skills-container {
  margin-top: 30px;
}

.skill-category {
  margin-bottom: 40px;
}

.skill-category h2 {
  color: #4fc3f7;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
  border-bottom: 2px solid rgba(79, 195, 247, 0.3);
  padding-bottom: 10px;
}

/* Skill Grid for Programming Languages */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.skill-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.skill-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.skill-item:hover::before {
  left: 100%;
}

.skill-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(79, 195, 247, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.skill-name {
  color: #81c784;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(129, 199, 132, 0.3);
}

.skill-level {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}

.skill-bar {
  height: 100%;
  background: linear-gradient(90deg, #4fc3f7, #81c784);
  border-radius: 4px;
  transition: width 1.5s ease-in-out;
  position: relative;
  overflow: hidden;
}

.skill-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.skill-percent {
  color: #4fc3f7;
  font-size: 0.9rem;
  font-weight: 600;
  float: right;
  text-shadow: 0 0 5px rgba(79, 195, 247, 0.3);
}

/* Skill Tags */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.skill-tag {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.skill-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.skill-tag:hover::before {
  left: 100%;
}

.skill-tag.expert {
  background: linear-gradient(135deg, #4fc3f7, #29b6f6);
  color: white;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.skill-tag.expert:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

.skill-tag.advanced {
  background: linear-gradient(135deg, #81c784, #66bb6a);
  color: white;
  box-shadow: 0 4px 15px rgba(129, 199, 132, 0.3);
}

.skill-tag.advanced:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(129, 199, 132, 0.4);
}

.skill-tag.intermediate {
  background: linear-gradient(135deg, #ffb74d, #ffa726);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 183, 77, 0.3);
}

.skill-tag.intermediate:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 183, 77, 0.4);
}

/* About Page Cool Effects */
.about-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.hero-section {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.profile-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.profile-card:hover::before {
  left: 100%;
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(79, 195, 247, 0.2);
}

.profile-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, #4fc3f7, #81c784, #ff6b35, #4fc3f7);
  background-size: 300% 300%;
  animation: rotate 3s linear infinite;
}

.avatar-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.3) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

.avatar-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4fc3f7;
  text-shadow: 0 0 20px rgba(79, 195, 247, 0.5);
  z-index: 2;
  position: relative;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-title {
  margin: 0;
  line-height: 1.2;
}

.title-line {
  display: block;
  font-size: 1.5rem;
  color: #b0b0b0;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease-out;
}

.title-name {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(45deg, #4fc3f7, #81c784, #ff6b35);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite, fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 0 30px rgba(79, 195, 247, 0.3);
}

.title-subtitle {
  display: block;
  font-size: 1.2rem;
  color: #81c784;
  margin-top: 15px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  text-shadow: 0 0 10px rgba(129, 199, 132, 0.3);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.intro-section, .journey-section, .skills-showcase, .passion-section, .beyond-section {
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-card, .journey-card, .passion-card, .beyond-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.intro-card:hover, .journey-card:hover, .passion-card:hover, .beyond-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 25px rgba(79, 195, 247, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.card-header h2 {
  color: #4fc3f7;
  font-size: 1.8rem;
  margin: 0;
  text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
}

.card-decoration {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #4fc3f7, transparent);
  margin-left: 15px;
  border-radius: 1px;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0;
}

.journey-timeline {
  position: relative;
  padding-left: 30px;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #4fc3f7, #81c784, #ff6b35);
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  animation: slideInLeft 0.6s ease-out;
}

.timeline-marker {
  position: absolute;
  left: -37px;
  top: 5px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border-left: 3px solid #4fc3f7;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.timeline-content h3 {
  color: #81c784;
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

.timeline-content p {
  color: #b0b0b0;
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.timeline-badge {
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.skill-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.skill-card:hover::before {
  left: 100%;
}

.skill-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(79, 195, 247, 0.1);
}

.skill-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.skill-card h3 {
  color: #4fc3f7;
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
}

.skill-card p {
  color: #b0b0b0;
  margin: 0 0 20px 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.skill-tags .tag {
  background: linear-gradient(135deg, #4fc3f7, #29b6f6);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(79, 195, 247, 0.3);
  transition: all 0.3s ease;
}

.skill-tags .tag:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(79, 195, 247, 0.4);
}

.passion-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.passion-quote {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #ff6b35;
  font-style: italic;
}

.quote-mark {
  font-size: 4rem;
  color: #ff6b35;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
  font-family: serif;
}

.quote-mark.closing {
  top: auto;
  bottom: -20px;
  right: 20px;
  left: auto;
}

.passion-quote p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  padding-left: 20px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4fc3f7;
  text-shadow: 0 0 20px rgba(79, 195, 247, 0.5);
  margin-bottom: 5px;
}

.stat-label {
  color: #b0b0b0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.beyond-text {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 25px 0;
}

.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.hobby-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hobby-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hobby-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  animation: float 3s ease-in-out infinite;
}

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

.hobby-item span {
  color: #b0b0b0;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* Ultra Cool About Page Styles */
.about-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(79, 195, 247, 0.1) 50%, rgba(129, 199, 132, 0.1) 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(79, 195, 247, 0.1));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 40px;
  height: 40px;
  top: 30%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.profile-container {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.avatar-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.avatar-ring {
  width: 120px;
  height: 120px;
  border: 3px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6b35, #4fc3f7, #81c784, #ff6b35);
  background-size: 300% 300%;
  animation: gradientRotate 3s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.avatar-inner {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.avatar-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.avatar-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #4fc3f7;
  border-radius: 50%;
  animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 30%;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  bottom: 20%;
  right: 30%;
  animation-delay: 1.5s;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
  50% { transform: translateY(-15px) scale(1.2); opacity: 1; }
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.status-badge span {
  color: #4caf50;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-info {
  flex: 1;
  min-width: 300px;
}

.greeting {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 10px;
  font-weight: 400;
}

.name {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #ff6b35, #4fc3f7, #81c784);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  margin: 0 0 15px 0;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.title {
  font-size: 1.4rem;
  color: #81c784;
  font-weight: 600;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(129, 199, 132, 0.3);
}

.location {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-top: 10px;
  margin-left: 0;
  padding-left: 0;
  width: 100%;
}

.location-icon {
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.section-icon {
  font-size: 2rem;
  margin-right: 15px;
  animation: float 3s ease-in-out infinite;
}

.section-header h2 {
  color: #4fc3f7;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
}

.section-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #4fc3f7, transparent);
  margin-left: 15px;
  border-radius: 1px;
}

/* Story Section */
.story-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.story-section:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.story-content p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Skills Section */
.skills-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.skills-section:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.skill-category h3 {
  color: #81c784;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(129, 199, 132, 0.3);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: linear-gradient(135deg, #4fc3f7, #29b6f6);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(79, 195, 247, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.skill-tag:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.4);
}

/* Contact Section */
.contact-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.contact-section:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  color: #b0b0b0;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: #4fc3f7;
  font-weight: 600;
  font-size: 1rem;
}

/* Stats Section */
.stats-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.stats-section:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4fc3f7;
  text-shadow: 0 0 20px rgba(79, 195, 247, 0.5);
  margin-bottom: 8px;
}

.stat-label {
  color: #81c784;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-shadow: 0 0 8px rgba(129, 199, 132, 0.3);
}

.stat-description {
  color: #b0b0b0;
  font-size: 0.85rem;
  line-height: 1.4;
}


.window-content strong {
  color: #81c784;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(129, 199, 132, 0.3);
}

/* Original Terminal Styling */
.window-panel {
  background: linear-gradient(to bottom, #2d2d2d 0%, #1a1a1a 100%) !important;
  border-radius: 8px 8px 0px 0px;
  border: none !important;
  height: 32px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-panel.bg-dark {
  background: linear-gradient(to bottom, #2d2d2d 0%, #1a1a1a 100%) !important;
}

#terminal-content, #terminal-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 0;
    padding: 20px;
    margin: 0;
}

output {
    display: block;
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
    overflow: visible;
}

pre {
    color: #ffffff !important;
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu Mono', 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Terminal output styling */
#terminal-content p, #terminal-mobile p {
    color: #ffffff !important;
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu Mono', 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

/* Command styling */
#terminal-content .command, #terminal-mobile .command {
    color: var(--terminal-user);
    font-weight: 500;
}

/* Output styling */
#terminal-content .output, #terminal-mobile .output {
    color: var(--terminal-text);
}

/* Error styling */
#terminal-content .error, #terminal-mobile .error {
    color: var(--ubuntu-orange);
}

/* Success styling */
#terminal-content .success, #terminal-mobile .success {
    color: var(--ubuntu-green);
}

/* Ubuntu terminal specific styling */
.terminal-output {
    color: var(--terminal-text);
    font-family: 'Ubuntu Mono', 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

.terminal-output h1, .terminal-output h2, .terminal-output h3 {
    color: var(--ubuntu-blue);
    font-weight: 600;
}

.terminal-output a {
    color: var(--ubuntu-orange);
    text-decoration: underline;
}

.terminal-output a:hover {
    color: var(--ubuntu-light-orange);
}

.terminal-output strong, .terminal-output b {
    color: var(--ubuntu-green);
    font-weight: 600;
}

.terminal-output code {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ubuntu-light-orange);
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Ubuntu Mono', 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

/* Force Ubuntu terminal styling */
#terminal-content, #terminal-mobile {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

#terminal-content *, #terminal-mobile * {
    color: inherit;
}

#terminal-content .prompt, #terminal-mobile .prompt {
    color: #e95420 !important;
}

#terminal-content .prompt::before, #terminal-mobile .prompt::before {
    color: #e95420 !important;
}

/* Ensure all terminal elements use consistent styling */
.card-body, #terminal-content, #terminal-mobile {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

.card-body *, #terminal-content *, #terminal-mobile * {
    background: transparent !important;
    color: inherit !important;
}

#terminal-content p, #terminal-mobile p,
#terminal-content div, #terminal-mobile div,
#terminal-content span, #terminal-mobile span,
.card-body p, .card-body div, .card-body span {
    color: #ffffff !important;
    background: transparent !important;
}

/* Force prompt styling */
.prompt, .prompt * {
    color: #e95420 !important;
}

/* Force input styling */
.cmdline, .cmdline * {
    color: #ffffff !important;
    background: transparent !important;
}

/* Override any conflicting styles - consolidated above */

/* Additional terminal consistency rules */
.terminal-output, .terminal-output * {
    background: transparent !important;
    color: #ffffff !important;
}

.terminal-output h1, .terminal-output h2, .terminal-output h3 {
    color: #2c5aa0 !important;
}

.terminal-output a {
    color: #e95420 !important;
}

.terminal-output strong, .terminal-output b {
    color: #38b44a !important;
}

/* Ensure all text elements in terminal are white by default - consolidated above */

/* Override any inline styles that might be applied */
#terminal-content [style*="color"], #terminal-mobile [style*="color"] {
    color: #ffffff !important;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 4px;
    transition: background var(--transition-speed) ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #6a6a6a;
}

/* Custom scrollbar for window content */
.window-content::-webkit-scrollbar {
    width: 10px;
}

.window-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 5px;
}

.window-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: background var(--transition-speed) ease;
}

.window-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.window-content::-webkit-scrollbar-corner {
    background: transparent;
}

/* Resize Handle */
.resize-handle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.3) 40%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.3) 70%, transparent 70%);
  cursor: nw-resize;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1002;
}

.floating-window:hover .resize-handle {
  opacity: 1;
}

.floating-window.resizing {
  transition: none !important;
}

.floating-window.resizing * {
  pointer-events: none !important;
}

body.resizing {
  cursor: nw-resize !important;
  user-select: none;
}

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 500px;
    min-height: 400px;
    background: #1a1a1a !important;
    border: none !important;
    border-radius: 0 0 8px 8px;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    font-family: 'Ubuntu Mono', 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    color: #ffffff !important;
}

.card-body.bg-dark {
    background: #1a1a1a !important;
}

.input-line {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 4px 0 0 0;
    padding: 2px 0;
    background: #1a1a1a !important;
    flex: 0 0 auto;
}

.input-line > div:nth-child(2) {
    flex: 1;
    display: flex;
    align-items: center;
}

.cmdline {
    outline: none;
    background-color: transparent;
    margin: 0;
    border: none;
    color: #ffffff !important;
    font-family: 'Ubuntu Mono', 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    width: 100%;
    flex: 1;
    caret-color: #e95420 !important;
}

.prompt {
    white-space: nowrap;
    margin-right: 4px;
    display: flex;
    align-items: center;
    font-family: 'Ubuntu Mono', 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 500;
}

.prompt::before {
    content: 'user@ubuntu:~$ ';
    color: #e95420 !important;
}

.prompt::after {
    content: '';
    width: 8px;
    height: 16px;
    background: #e95420 !important;
    margin-left: 2px;
    animation: none;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.prp {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
}

.prp:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.close {
  background: #ff5f56;
  box-shadow: 0 0 8px rgba(255, 95, 86, 0.3);
}

.min {
  background: #ffbd2e;
  box-shadow: 0 0 8px rgba(255, 189, 46, 0.3);
}

.max {
  background: #27ca3f;
  box-shadow: 0 0 8px rgba(39, 202, 63, 0.3);
}

.maxer {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: none;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: all var(--transition-speed) ease;
}

.maxer:hover {
  color: var(--text-primary);
  transform: rotate(-45deg) scale(1.1);
}

.card-header span {
  color: #ffffff;
  font-size: 13px;
  font-family: "Ubuntu", "Inter", sans-serif;
  font-weight: 500;
  flex: 1;
  text-align: center;
  margin: 0 20px;
}

.card-header {
  background: linear-gradient(to bottom, #2d2d2d 0%, #1a1a1a 100%) !important;
  border-radius: 8px 8px 0px 0px;
  border: none !important;
  height: 32px;
  padding: 8px 12px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header.bg-dark {
  background: linear-gradient(to bottom, #2d2d2d 0%, #1a1a1a 100%) !important;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent !important;
    min-height: calc(100vh - 120px);
    border: none !important;
    border-radius: 8px;
    transition: transform var(--transition-speed) ease;
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

/* Override Bootstrap classes */
.card.text-white {
    color: #ffffff !important;
}

.card.mb-3 {
    margin-bottom: 0 !important;
}

.card:hover {
    transform: translateY(-2px);
}

.top-text p {
  font-size: 72px;
  font-family: 'Inter', 'Roboto', sans-serif;
  text-align: center;
  color: var(--text-primary);
  font-weight: 700;
  margin: 0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-speed) ease;
  cursor: default;
  line-height: 0.9;
}

.top-text p:hover {
  transform: scale(1.02);
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.top-text {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    position: relative;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

/* Force centering for all content in the right column */
.col-md-5:last-child .top-text {
    align-items: center !important;
    text-align: center !important;
}

.col-md-5:last-child .top-text p {
    text-align: center !important;
    margin: 0 auto;
}

.col-md-5:last-child .social-icons {
    justify-content: center !important;
    margin: 0 auto;
}

.title-logo {
    height: 28px;
    width: 28px;
    margin: 8px 12px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border-radius: 6px;
    padding: 4px;
}

.title-logo:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--accent-blue));
    transform: scale(1.15) translateY(-2px);
    background: var(--hover-bg);
    border-radius: 8px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-view {
  display: none;
}

.desktop-view {
    display: block;
}

.bg-dark {
    background-color: #2c2d2f!important;
}

h1.intro {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: all var(--transition-speed) ease;
}

h1.intro:hover {
    color: var(--text-primary);
    transform: scale(1.02);
}

/* ANIMATION CLASSES for the HINGE effect ONLY */

.css-transition {-webkit-transition:all 0.8s ease-in-out; -moz-transition:all 0.8s ease-in-out; -o-transition:all 0.8s ease-in-out; -ms-transition:all 0.8s ease-in-out; transition:all 0.8s ease-in-out;}

/* Shake animation for oops command */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

/* Avengers-style dust particle animation */
@keyframes dustParticle {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0) translateX(0);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2) translateY(-10px) translateX(5px);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) translateY(-30px) translateX(15px);
  }
}

@-webkit-keyframes hinge{0%{-webkit-transform:rotate(0);-webkit-transform-origin:top left;-webkit-animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);-webkit-transform-origin:top left;-webkit-animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);-webkit-transform-origin:top left;-webkit-animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);opacity:1;-webkit-transform-origin:top left;-webkit-animation-timing-function:ease-in-out}100%{-webkit-transform:translateY(700px);opacity:0}}
@-moz-keyframes hinge{0%{-moz-transform:rotate(0);-moz-transform-origin:top left;-moz-animation-timing-function:ease-in-out}20%,60%{-moz-transform:rotate(80deg);-moz-transform-origin:top left;-moz-animation-timing-function:ease-in-out}40%{-moz-transform:rotate(60deg);-moz-transform-origin:top left;-moz-animation-timing-function:ease-in-out}80%{-moz-transform:rotate(60deg) translateY(0);opacity:1;-moz-transform-origin:top left;-moz-animation-timing-function:ease-in-out}100%{-moz-transform:translateY(700px);opacity:0}}
@-o-keyframes hinge{0%{-o-transform:rotate(0);-o-transform-origin:top left;-o-animation-timing-function:ease-in-out}20%,60%{-o-transform:rotate(80deg);-o-transform-origin:top left;-o-animation-timing-function:ease-in-out}40%{-o-transform:rotate(60deg);-o-transform-origin:top left;-o-animation-timing-function:ease-in-out}80%{-o-transform:rotate(60deg) translateY(0);opacity:1;-o-transform-origin:top left;-moz-animation-timing-function:ease-in-out}100%{-o-transform:translateY(700px);opacity:0}}
@keyframes hinge{0%{transform:rotate(0);transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);transform-origin:top left;animation-timing-function:ease-in-out}40%{transform:rotate(60deg);transform-origin:top left;animation-timing-function:ease-in-out}80%{transform:rotate(60deg) translateY(0);opacity:1;transform-origin:top left;animation-timing-function:ease-in-out}100%{transform:translateY(700px);opacity:0}}

.animated.hinge{-webkit-animation-duration:2s;-moz-animation-duration:2s;-o-animation-duration:2s;animation-duration:2s}

.hinge{-webkit-animation-name:hinge;-moz-animation-name:hinge;-o-animation-name:hinge;animation-name:hinge}

.p {
  position: relative;
}


div.row {
    margin-bottom: 2em;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
    gap: 2rem;
    display: flex;
    flex-wrap: nowrap;
}

/* Interactive Elements */
.typer {
    position: relative;
    display: inline-block;
}

.typer::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--accent-blue);
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Floating Animation for Social Icons */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.social-icons a:nth-child(1) { animation: float 3s ease-in-out infinite; }
.social-icons a:nth-child(2) { animation: float 3s ease-in-out infinite 0.5s; }
.social-icons a:nth-child(3) { animation: float 3s ease-in-out infinite 1s; }
.social-icons a:nth-child(4) { animation: float 3s ease-in-out infinite 1.5s; }

/* Interactive Effects */
.prp.clicked {
    transform: scale(0.9);
    opacity: 0.7;
}

.cmdline.typing {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 2px;
}

.title-logo.icon-hover {
    transform: scale(1.2) translateY(-3px);
    filter: brightness(0) invert(1) drop-shadow(0 0 12px var(--accent-blue));
}

/* Enhanced Terminal Output Styling */
output p {
    margin: 0.25rem 0;
    padding: 0.25rem 0;
    border-left: 3px solid transparent;
    padding-left: 0.5rem;
    transition: all var(--transition-speed) ease;
    line-height: 1.4;
}

output p:first-child {
    margin-top: 0;
}

output p:last-child {
    margin-bottom: 0.5rem;
}

output p:hover {
    border-left-color: var(--accent-blue);
    background: rgba(99, 102, 241, 0.05);
    border-radius: 4px;
}

output h2, output h3, output h4 {
    color: var(--accent-blue);
    margin: 0.5rem 0 0.25rem 0;
    font-size: 1.1em;
    font-weight: 600;
}

output a {
    color: var(--terminal-prompt);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

output a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* Command line styling for better flow */
.line {
    margin: 4px 0;
    padding: 2px 0;
}

.line .input-line {
    margin: 0;
    padding: 2px 0;
    border: none;
    background: transparent;
}

/* Terminal Layout Improvements */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.col-md-6, .col-md-7, .col-md-5, .col-md-8, .col-md-4, .col-md-9, .col-md-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Override for the right column to ensure centering */
.col-md-5:last-child {
    align-items: center !important;
}

/* Ensure terminal is on the left */
.col-md-7:first-child {
    order: 1;
    padding-right: 1rem;
}

/* Ensure name/content is on the right */
.col-md-5:last-child {
    order: 2;
    padding-left: 1rem;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Force proper column behavior */
@media (min-width: 768px) {
    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    
    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  body {
    margin-left: 0;
    padding-top: 50px;
  }
  
  .top-panel {
    padding: 0 15px;
  }
  
  .portfolio-title {
    font-size: 16px;
  }
  
  .ubuntu-logo {
    font-size: 12px;
  }
  
  .ubuntu-logo svg {
    width: 20px;
    height: 20px;
  }
  
  .date-time {
    font-size: 11px;
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
  }
  
  .mobile-menu-btn:hover span {
    background: var(--ubuntu-orange);
  }
  
  .sidebar {
    position: fixed;
    left: -100px;
    top: 50px;
    transition: left var(--transition-speed) ease;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    width: 100px;
    height: calc(100vh - 50px);
  }
  
  .sidebar.open {
    left: 0;
  }
  
  .icon {
    width: 60px;
    height: 60px;
  }
  
  .icon-emoji {
    font-size: 24px;
  }
  
  .icon-name {
    font-size: 8px;
  }
  
  /* Mobile Window Stack */
  .floating-window {
    position: fixed !important;
    top: 50px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 50px) !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 1002 !important;
    border-radius: 0 !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
  }
  
  /* Hide main content when windows are open on mobile */
  .container.windows-open {
    display: none !important;
  }
  
  .floating-window.minimized {
    display: none !important;
  }
  
  .floating-window.maximized {
    top: 50px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 50px) !important;
  }
  
  .window-header {
    padding: 12px 16px !important;
    border-radius: 0 !important;
  }
  
  .window-title {
    font-size: 16px !important;
  }
  
  .window-content {
    padding: 20px 16px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-height: calc(100vh - 120px) !important;
    overflow-y: auto !important;
  }
  
  .window-content h1 {
    font-size: 24px !important;
    margin-bottom: 16px !important;
  }
  
  .window-content h2 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }
  
  .window-content h3 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }
  
  .window-content p {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }
  
  .window-content ul {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }
  
  .window-content a {
    font-size: 14px !important;
  }
  
  .window-content code {
    font-size: 12px !important;
    padding: 2px 6px !important;
  }
  
  /* Mobile Slideshow */
  .mobile-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1003;
    display: block;
    padding: 20px;
    overflow-y: auto;
  }
  
  /* Hide on desktop */
  @media (min-width: 769px) {
    .mobile-slideshow {
      display: none !important;
    }
  }
  
  .mobile-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: calc(100vh - 100px);
  }
  
  .mobile-section h1 {
    color: var(--ubuntu-orange);
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  #mobileContent {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
  }
  
  #mobileContent h2 {
    color: var(--ubuntu-orange);
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  
  #mobileContent h3 {
    color: var(--ubuntu-orange);
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  #mobileContent p {
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  #mobileContent ul {
    margin-bottom: 20px;
    padding-left: 25px;
  }
  
  #mobileContent li {
    margin-bottom: 8px;
  }
  
  #mobileContent a {
    color: var(--ubuntu-orange);
    text-decoration: none;
  }
  
  #mobileContent a:hover {
    text-decoration: underline;
  }
  
  .mobile-progress {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  #mobileCounter {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
  }
    
    .top-text p {
        font-size: 48px;
    }
    
    .card {
        min-height: calc(100vh - 200px);
    }
    
    .top-text {
        min-height: calc(100vh - 200px);
        padding: 1rem;
    }
    
    nav {
        margin-top: 1rem;
        margin-right: 1rem;
    }
    
    nav a {
        font-size: 14px;
        margin-right: 0.5rem;
        padding: 6px 12px;
    }
    
    .title-logo {
        height: 24px;
        width: 24px;
        margin: 4px 8px;
    }
    
    .social-icons {
        padding-top: 16px;
        gap: 4px;
    }
    
    .card-body {
        max-height: 400px;
        min-height: 300px;
        padding: 16px;
    }
    
    .card {
        max-width: 100%;
        margin: 0 10px;
    }
    
    div.row {
        margin-bottom: 3rem;
    }
    
    h1.intro {
        font-size: 1.2rem;
    }
    
    .floating-window {
        min-width: 90vw;
        max-width: 95vw;
    }
}

@media (max-width: 480px) {
    .top-text p {
        font-size: 36px;
    }
    
    .title-logo {
        height: 20px;
        width: 20px;
        margin: 4px 6px;
    }
    
    nav a {
        font-size: 14px;
        padding: 4px 8px;
    }
    
    .card-body {
        max-height: 350px;
        min-height: 250px;
        padding: 12px;
    }
    
    .card {
        margin: 0 5px;
    }
}