@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ===== DEVOPS LOADER STYLES ===== */
.devops-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.devops-loader.fade-out {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
}

/* Cloud Infrastructure Animation */
.cloud-infrastructure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.cloud {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 32px;
  animation: cloudFloat 3s ease-in-out infinite;
}

.cloud-1 {
  animation-delay: 0s;
  color: #3b82f6;
}

.cloud-2 {
  animation-delay: 1s;
  color: #06b6d4;
}

.cloud-3 {
  animation-delay: 2s;
  color: #8b5cf6;
}

.cloud-dots {
  display: flex;
  gap: 4px;
}

.cloud-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: cloudDotPulse 1.5s ease-in-out infinite;
}

.cloud-dots span:nth-child(1) { animation-delay: 0s; }
.cloud-dots span:nth-child(2) { animation-delay: 0.3s; }
.cloud-dots span:nth-child(3) { animation-delay: 0.6s; }

.server-status {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #64748b;
  opacity: 0.4;
}

.status-dot.active {
  background: #22c55e;
  opacity: 1;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.loading {
  background: #f59e0b;
  animation: statusLoading 1s ease-in-out infinite;
}

/* CI/CD Pipeline Animation */
.pipeline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pipeline-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  transition: all 0.5s ease;
}

.pipeline-stage.active {
  opacity: 1;
  transform: scale(1.1);
}

.stage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #64748b;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.pipeline-stage.active .stage-icon {
  border-color: #3b82f6;
  color: #3b82f6;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.stage-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  transition: left 0.5s ease;
}

.pipeline-stage.active .stage-icon::after {
  left: 100%;
}

.stage-progress {
  width: 40px;
  height: 4px;
  background: #334155;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.stage-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.8s ease;
}

.pipeline-stage.active .stage-progress::after {
  left: 0;
}

.stage-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.5s ease;
}

.pipeline-stage.active .stage-label {
  color: #3b82f6;
}

.pipeline-connector {
  width: 30px;
  height: 2px;
  background: #334155;
  position: relative;
  overflow: hidden;
}

.connector-flow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.5s ease;
}

.pipeline-connector.active .connector-flow {
  left: 0;
}

/* Loading Text Animation */
.loading-text-container {
  text-align: center;
  margin: 20px 0;
}

.loading-title {
  margin-bottom: 15px;
}

.loading-title .gradient-text {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease-in-out infinite;
}

.loading-title .title-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  margin-top: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loading-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.process-text {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
  min-width: 200px;
  text-align: left;
}

.loading-dots {
  display: flex;
  gap: 4px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: loadingDotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Progress Bar */
.main-progress-container {
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progressGradient 2s ease-in-out infinite;
}

.progress-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
  transform: translateX(-100%);
  animation: progressGlow 2s ease-in-out infinite;
}

.progress-percentage {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Container Stats */
.container-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.stat-item.active {
  opacity: 1;
  transform: scale(1.1);
}

.stat-item i {
  font-size: 24px;
  color: #64748b;
  transition: color 0.5s ease;
}

.stat-item.active i {
  color: #3b82f6;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #f8fafc;
  text-shadow: 0 0 10px rgba(248, 250, 252, 0.3);
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 20px;
  color: #334155;
  opacity: 0.3;
  animation: particleFloat 15s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  color: #f59e0b;
}

.particle-2 {
  top: 60%;
  left: 80%;
  animation-delay: 3s;
  color: #06b6d4;
}

.particle-3 {
  top: 30%;
  left: 70%;
  animation-delay: 6s;
  color: #8b5cf6;
}

.particle-4 {
  top: 80%;
  left: 20%;
  animation-delay: 9s;
  color: #3b82f6;
}

.particle-5 {
  top: 10%;
  left: 60%;
  animation-delay: 12s;
  color: #22c55e;
}

.particle-6 {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
  color: #ef4444;
}

/* Animations */
@keyframes cloudFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

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

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

@keyframes loadingDotBounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

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

@keyframes progressGlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.3;
  }
}

/* ===== FINAL HAMBURGER MENU OVERRIDES ===== */

/* CRITICAL: Hide hamburger during loading state */
body:not(.loader-hidden) .section-aside .aside-nav-toggler,
body:not(.loader-hidden) .aside-nav-toggler {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* CRITICAL: Hide hamburger on desktop completely */
@media (min-width: 992px) {
  .section-aside .aside-nav-toggler,
  .aside-nav-toggler {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* CRITICAL: Only show on mobile/tablet AFTER loading */
@media (max-width: 991px) {
  body.loader-hidden .section-aside .aside-nav-toggler {
    display: flex !important;
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 10001 !important;
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 0.95), 
      rgba(59, 130, 246, 0.9)) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 18px !important;
    box-shadow: 
      0 10px 30px rgba(37, 99, 235, 0.3),
      0 5px 15px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    backdrop-filter: blur(12px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    justify-content: center !important;
    align-items: center !important;
    transform: none !important;
    margin: 0 !important;
  }

  /* Ensure no conflicting positioning */
  body.loader-hidden .section-aside .aside-nav-toggler {
    margin-left: 0 !important;
    left: 20px !important;
  }

  /* Beautiful hover effect */
  body.loader-hidden .section-aside .aside-nav-toggler:hover {
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 1), 
      rgba(99, 102, 241, 0.95)) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 
      0 15px 40px rgba(37, 99, 235, 0.4),
      0 8px 25px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }

  /* Modern hamburger lines */
  body.loader-hidden .section-aside .aside-nav-toggler span {
    width: 22px !important;
    height: 2.5px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 2px !important;
    position: relative !important;
    display: block !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler span::before,
  body.loader-hidden .section-aside .aside-nav-toggler span::after {
    content: "" !important;
    width: 22px !important;
    height: 2.5px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 2px !important;
    position: absolute !important;
    left: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler span::before {
    top: -7px !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler span::after {
    top: 7px !important;
  }

  /* Beautiful open state */
  body.loader-hidden .section-aside .aside-nav-toggler.open {
    background: linear-gradient(135deg, 
      rgba(6, 182, 212, 0.95), 
      rgba(14, 165, 233, 0.9)) !important;
    transform: rotate(180deg) scale(1.05) !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler.open span {
    background: transparent !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler.open span::before {
    transform: rotate(45deg) !important;
    top: 0 !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler.open span::after {
    transform: rotate(-45deg) !important;
    top: 0 !important;
  }
}

/* Enhanced phone styling */
@media (max-width: 768px) {
  body.loader-hidden .section-aside .aside-nav-toggler {
    width: 54px !important;
    height: 54px !important;
    border-radius: 17px !important;
    top: 18px !important;
    left: 18px !important;
  }
}

/* Small phone styling */
@media (max-width: 480px) {
  body.loader-hidden .section-aside .aside-nav-toggler {
    width: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 0.98), 
      rgba(139, 92, 246, 0.95)) !important;
  }
}

/* Dark mode */
body.dark.loader-hidden .section-aside .aside-nav-toggler {
  background: linear-gradient(135deg, 
    rgba(30, 41, 59, 0.95), 
    rgba(51, 65, 85, 0.9)) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(148, 163, 184, 0.1) !important;
}

body.dark.loader-hidden .section-aside .aside-nav-toggler:hover {
  background: linear-gradient(135deg, 
    rgba(51, 65, 85, 1), 
    rgba(71, 85, 105, 0.95)) !important;
  border-color: rgba(148, 163, 184, 0.3) !important;
}

body.dark.loader-hidden .section-aside .aside-nav-toggler.open {
  background: linear-gradient(135deg, 
    rgba(6, 182, 212, 0.95), 
    rgba(8, 145, 178, 0.9)) !important;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .devops-loader {
    padding: 20px;
  }

  .loader-container {
    padding: 20px 15px;
    gap: 25px;
    max-width: 100%;
  }

  .cloud-infrastructure {
    max-width: 280px;
    gap: 15px;
  }

  .cloud {
    font-size: 20px;
    gap: 8px;
  }

  .cloud-dots span {
    width: 6px;
    height: 6px;
  }

  .server-status {
    gap: 4px;
  }

  .status-dot {
    width: 8px;
    height: 8px;
  }

  .pipeline-container {
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    align-items: center;
  }

  .pipeline-stage {
    gap: 8px;
  }

  .stage-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .stage-progress {
    width: 30px;
    height: 3px;
  }

  .stage-label {
    font-size: 11px;
  }

  .pipeline-connector {
    width: 3px;
    height: 20px;
    transform: rotate(0deg);
  }

  .connector-flow {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
  }

  .loading-text-container {
    margin: 15px 0;
  }

  .loading-title .gradient-text {
    font-size: 24px;
  }

  .loading-title .title-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .loading-process {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .process-text {
    font-size: 14px;
    min-width: auto;
    text-align: center;
  }

  .loading-dots {
    justify-content: center;
  }

  .main-progress-container {
    max-width: 280px;
  }

  .progress-bar {
    height: 6px;
  }

  .progress-percentage {
    font-size: 16px;
    margin-top: 8px;
  }

  .container-stats {
    max-width: 280px;
    gap: 10px;
  }

  .stat-item {
    gap: 6px;
  }

  .stat-item i {
    font-size: 18px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 10px;
  }

  .particle {
    font-size: 14px;
  }

  /* Adjust particle positions for mobile */
  .particle-1 { top: 15%; left: 5%; }
  .particle-2 { top: 70%; left: 85%; }
  .particle-3 { top: 25%; left: 75%; }
  .particle-4 { top: 85%; left: 15%; }
  .particle-5 { top: 5%; left: 65%; }
  .particle-6 { top: 75%; left: 35%; }
}

@media (max-width: 480px) {
  .devops-loader {
    padding: 15px;
  }

  .loader-container {
    padding: 15px 10px;
    gap: 20px;
    max-width: 100%;
  }

  .cloud-infrastructure {
    max-width: 240px;
    gap: 10px;
  }

  .cloud {
    font-size: 18px;
    gap: 6px;
  }

  .cloud-dots span {
    width: 5px;
    height: 5px;
  }

  .status-dot {
    width: 6px;
    height: 6px;
  }

  .pipeline-container {
    max-width: 240px;
    gap: 10px;
  }

  .stage-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .stage-progress {
    width: 25px;
    height: 2px;
  }

  .stage-label {
    font-size: 10px;
  }

  .pipeline-connector {
    height: 15px;
  }

  .loading-title .gradient-text {
    font-size: 20px;
  }

  .loading-title .title-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .process-text {
    font-size: 13px;
  }

  .loading-dots span {
    width: 6px;
    height: 6px;
  }

  .main-progress-container {
    max-width: 240px;
  }

  .progress-bar {
    height: 5px;
  }

  .progress-percentage {
    font-size: 14px;
    margin-top: 6px;
  }

  .container-stats {
    max-width: 240px;
    gap: 8px;
  }

  .stat-item {
    gap: 4px;
  }

  .stat-item i {
    font-size: 16px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 9px;
  }

  .particle {
    font-size: 12px;
  }

  /* Further adjust particles for small screens */
  .particle-1 { top: 10%; left: 2%; }
  .particle-2 { top: 75%; left: 88%; }
  .particle-3 { top: 20%; left: 78%; }
  .particle-4 { top: 88%; left: 12%; }
  .particle-5 { top: 3%; left: 68%; }
  .particle-6 { top: 78%; left: 32%; }
}

/* Ultra-small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
  .loader-container {
    padding: 12px 8px;
    gap: 18px;
  }

  .cloud-infrastructure {
    max-width: 220px;
  }

  .cloud {
    font-size: 16px;
  }

  .pipeline-container {
    max-width: 220px;
  }

  .stage-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .loading-title .gradient-text {
    font-size: 18px;
  }

  .process-text {
    font-size: 12px;
  }

  .main-progress-container {
    max-width: 220px;
  }

  .container-stats {
    max-width: 220px;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .loader-container {
    gap: 15px;
    padding: 15px;
    max-height: 100vh;
    overflow-y: auto;
  }

  .cloud-infrastructure {
    margin-bottom: 10px;
  }

  .pipeline-container {
    flex-direction: row;
    max-width: 90vw;
    gap: 8px;
  }

  .pipeline-connector {
    width: 15px;
    height: 2px;
    transform: rotate(0deg);
  }

  .connector-flow {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
  }

  .loading-text-container {
    margin: 10px 0;
  }

  .main-progress-container {
    margin: 10px 0;
  }

  .container-stats {
    margin: 10px 0;
  }

  /* Adjust particles for landscape */
  .particle {
    font-size: 12px;
  }
}

/* Very small landscape screens */
@media (max-width: 480px) and (orientation: landscape) {
  .loader-container {
    gap: 12px;
    padding: 10px;
  }

  .loading-title .gradient-text {
    font-size: 16px;
  }

  .loading-title .title-subtitle {
    font-size: 10px;
  }

  .process-text {
    font-size: 11px;
  }

  .progress-percentage {
    font-size: 12px;
  }

  .stage-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .stage-label {
    font-size: 8px;
  }

  .cloud {
    font-size: 14px;
  }
}

/* Tablet responsive design */
@media (min-width: 769px) and (max-width: 1024px) {
  .loader-container {
    max-width: 500px;
    gap: 35px;
  }

  .cloud-infrastructure {
    max-width: 350px;
  }

  .pipeline-container {
    max-width: 450px;
  }

  .main-progress-container {
    max-width: 350px;
  }

  .container-stats {
    max-width: 350px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .devops-loader {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .loader-container * {
    -webkit-tap-highlight-color: transparent;
  }

  /* Slightly larger touch targets for better accessibility */
  .pipeline-stage {
    min-height: 44px;
    min-width: 44px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .progress-bar {
    border-radius: 6px;
  }

  .stage-icon {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
  }
}

/* Dark Mode Enhancements */
body.dark .devops-loader {
  background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
}

body.dark .stage-icon {
  background: linear-gradient(135deg, #000000, #1e293b);
  border-color: #334155;
}

body.dark .progress-bar {
  background: #000000;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .devops-loader * {
    animation-duration: 0.1s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1s !important;
  }
}

/* ===== END DEVOPS LOADER STYLES ===== */

/* Modern Color Palette */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #06b6d4;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
body.dark {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-home .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Utilities */
.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  border: none;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.shadow-dark {
  box-shadow: var(--shadow-medium);
}

/* Modern Sidebar */
.section-aside {
  width: 280px;
  background: var(--bg-secondary);
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px 30px;
  border-right: 1px solid var(--border-color);
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

/* ===== STUNNING ENHANCED LOGO DESIGN ===== */

.section-aside .logo {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  padding: 30px 0;
  overflow: visible;
}

/* Logo Container with Enhanced Background */
.section-aside .logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.15) 0%, 
    rgba(6, 182, 212, 0.1) 35%, 
    rgba(139, 92, 246, 0.08) 70%, 
    transparent 100%);
  border-radius: 50%;
  opacity: 0.6;
  animation: logoBackgroundPulse 4s ease-in-out infinite;
  z-index: 0;
}

/* Dynamic Floating Particles */
.section-aside .logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: 
    radial-gradient(2px 2px at 20px 30px, rgba(37, 99, 235, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(139, 92, 246, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(6, 182, 212, 0.3), transparent);
  animation: particleFloat 8s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Main Logo Text */
.section-aside .logo a {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  letter-spacing: -1.5px;
  z-index: 10;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    #6366f1 50%,
    #8b5cf6 75%,
    var(--primary-color) 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
  text-shadow: 
    0 0 30px rgba(37, 99, 235, 0.3),
    0 0 60px rgba(6, 182, 212, 0.2),
    0 0 90px rgba(139, 92, 246, 0.1);
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
}

/* Enhanced Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  25% {
    background-position: 100% 0%;
    filter: hue-rotate(90deg);
  }
  50% {
    background-position: 100% 100%;
    filter: hue-rotate(180deg);
  }
  75% {
    background-position: 0% 100%;
    filter: hue-rotate(270deg);
  }
  100% {
    background-position: 0% 50%;
    filter: hue-rotate(360deg);
  }
}

/* Logo Background Pulse Animation */
@keyframes logoBackgroundPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
}

/* Particle Float Animation */
@keyframes particleFloat {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 1;
  }
}

/* Spectacular Hover Effect */
.section-aside .logo a:hover {
  transform: scale(1.15) rotate(2deg);
  filter: drop-shadow(0 0 40px rgba(37, 99, 235, 0.6))
          drop-shadow(0 0 80px rgba(6, 182, 212, 0.4))
          drop-shadow(0 0 120px rgba(139, 92, 246, 0.3));
  text-shadow: 
    0 0 20px rgba(37, 99, 235, 0.8),
    0 0 40px rgba(6, 182, 212, 0.6),
    0 0 60px rgba(139, 92, 246, 0.4),
    0 0 80px rgba(37, 99, 235, 0.2);
}

/* Logo hover background effect */
.section-aside .logo:hover::before {
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.8;
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.3) 0%, 
    rgba(6, 182, 212, 0.2) 35%, 
    rgba(139, 92, 246, 0.15) 70%, 
    transparent 100%);
}

/* Enhanced First Letter - "D" */
.section-aside .logo a span {
  font-size: 48px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  margin-right: 3px;
  background: linear-gradient(45deg, 
    #3b82f6 0%,
    #8b5cf6 25%,
    #06b6d4 50%,
    #f59e0b 75%,
    #ef4444 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: letterGlow 4s ease-in-out infinite;
  text-shadow: 
    0 0 20px rgba(59, 130, 246, 0.8),
    0 0 40px rgba(139, 92, 246, 0.6),
    0 0 60px rgba(6, 182, 212, 0.4);
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
  z-index: 11;
}

/* First Letter Decorative Elements */
.section-aside .logo a span::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, 
    rgba(37, 99, 235, 0.1),
    rgba(139, 92, 246, 0.1),
    rgba(6, 182, 212, 0.1));
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-aside .logo a span:hover::before {
  opacity: 1;
}

/* Enhanced First Letter Hover */
.section-aside .logo a:hover span {
  transform: scale(1.3) rotate(-5deg);
  animation: letterBounce 0.6s ease;
}

/* Enhanced Letter Glow Animation */
@keyframes letterGlow {
  0% {
    background-position: 0% 50%;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1) saturate(1);
  }
  25% {
    background-position: 100% 0%;
    transform: scale(1.05) rotateY(5deg);
    filter: brightness(1.2) saturate(1.3);
  }
  50% {
    background-position: 100% 100%;
    transform: scale(1.1) rotateY(0deg);
    filter: brightness(1.4) saturate(1.5);
  }
  75% {
    background-position: 0% 100%;
    transform: scale(1.05) rotateY(-5deg);
    filter: brightness(1.2) saturate(1.3);
  }
  100% {
    background-position: 0% 50%;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1) saturate(1);
  }
}

/* Letter Bounce Animation */
@keyframes letterBounce {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-3deg); }
  50% { transform: scale(1.4) rotate(-8deg); }
  75% { transform: scale(1.2) rotate(-5deg); }
  100% { transform: scale(1.3) rotate(-5deg); }
}

/* Enhanced Professional Subtitle */
.section-aside .logo .logo-subtitle {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, 
    var(--primary-color), 
    var(--accent-color),
    #8b5cf6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: subtitleGlow 3s ease-in-out infinite;
  z-index: 5;
}

/* Decorative Top Line */
.section-aside .logo .logo-top-line {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%,
    var(--accent-color) 50%,
    #8b5cf6 100%);
  border-radius: 2px;
  opacity: 0.8;
  animation: lineExpand 3s ease-in-out infinite;
}

/* Decorative Bottom Line */
.section-aside .logo .logo-bottom-line {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--primary-color) 25%,
    var(--accent-color) 50%,
    #8b5cf6 75%,
    transparent 100%);
  border-radius: 1px;
  animation: bottomLineShimmer 4s ease-in-out infinite;
}

/* Subtitle Glow Animation */
@keyframes subtitleGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.8;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

/* Line Expand Animation */
@keyframes lineExpand {
  0%, 100% {
    width: 60px;
    opacity: 0.8;
  }
  50% {
    width: 80px;
    opacity: 1;
  }
}

/* Bottom Line Shimmer Animation */
@keyframes bottomLineShimmer {
  0% {
    background-position: -100% 0%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 0%;
    opacity: 1;
  }
  100% {
    background-position: 200% 0%;
    opacity: 0.6;
  }
}

/* Enhanced Logo Container Background */
.section-aside .logo {
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-aside .logo:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  box-shadow: 
    0 12px 48px rgba(37, 99, 235, 0.2),
    0 0 60px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Enhanced Dark Mode Styles */
body.dark .section-aside .logo {
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark .section-aside .logo:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(37, 99, 235, 0.2),
    0 0 120px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark .section-aside .logo::before {
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.2) 0%, 
    rgba(6, 182, 212, 0.15) 35%, 
    rgba(139, 92, 246, 0.1) 70%, 
    transparent 100%);
}

body.dark .section-aside .logo .logo-subtitle {
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}

body.dark .section-aside .logo a {
  text-shadow: 
    0 0 40px rgba(37, 99, 235, 0.4),
    0 0 80px rgba(6, 182, 212, 0.3),
    0 0 120px rgba(139, 92, 246, 0.2);
}

body.dark .section-aside .logo a span {
  text-shadow: 
    0 0 30px rgba(59, 130, 246, 1),
    0 0 60px rgba(139, 92, 246, 0.8),
    0 0 90px rgba(6, 182, 212, 0.6);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .section-aside .logo {
    padding: 25px 0;
    margin-bottom: 50px;
  }
  
  .section-aside .logo::before {
    width: 120px;
    height: 120px;
  }
  
  .section-aside .logo::after {
    width: 150px;
    height: 150px;
  }
  
  .section-aside .logo a {
    font-size: 30px;
    letter-spacing: -1px;
  }
  
  .section-aside .logo a span {
    font-size: 40px;
    margin-right: 2px;
  }
  
  .section-aside .logo .logo-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    bottom: -30px;
  }
  
  .section-aside .logo .logo-top-line {
    width: 50px;
    height: 3px;
    top: -12px;
  }
  
  .section-aside .logo .logo-bottom-line {
    width: 60px;
    bottom: -45px;
  }
  
  .section-aside .logo .logo-badge {
    font-size: 8px;
    padding: 4px 8px;
    top: -2px;
    right: -12px;
  }
  
  /* Reduced animations for better mobile performance */
  .section-aside .logo a:hover {
    transform: scale(1.08) rotate(1deg);
  }
  
  .section-aside .logo a:hover span {
    transform: scale(1.2) rotate(-3deg);
  }
}

@media (max-width: 480px) {
  .section-aside .logo {
    padding: 20px 0;
    margin-bottom: 40px;
  }
  
  .section-aside .logo a {
    font-size: 26px;
  }
  
  .section-aside .logo a span {
    font-size: 36px;
  }
  
  .section-aside .logo .logo-subtitle {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  
  .section-aside .logo .logo-badge {
    font-size: 7px;
    padding: 3px 6px;
  }
}

/* Enhanced Professional Logo Badge */
.section-aside .logo .logo-badge {
  position: absolute;
  top: 0px;
  right: -15px;
  background: linear-gradient(135deg, 
    #10b981 0%,
    #059669 50%,
    #047857 100%);
  color: white;
  font-size: 9px;
  padding: 6px 10px;
  border-radius: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  animation: badgePulse 3s ease-in-out infinite;
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.4),
    0 0 20px rgba(5, 150, 105, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 12;
  transition: all 0.4s ease;
}

.section-aside .logo .logo-badge::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.6),
    rgba(5, 150, 105, 0.4));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-aside .logo:hover .logo-badge {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 
    0 6px 20px rgba(16, 185, 129, 0.6),
    0 0 30px rgba(5, 150, 105, 0.4);
}

.section-aside .logo:hover .logo-badge::before {
  opacity: 1;
}

/* Enhanced Badge Pulse Animation */
@keyframes badgePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 
      0 4px 12px rgba(16, 185, 129, 0.4),
      0 0 20px rgba(5, 150, 105, 0.3);
  }
  50% {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 
      0 6px 16px rgba(16, 185, 129, 0.6),
      0 0 30px rgba(5, 150, 105, 0.5);
  }
}

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

/* ===== LOGO PERFORMANCE & ACCESSIBILITY ENHANCEMENTS ===== */

/* Hardware acceleration for smooth animations */
.section-aside .logo a,
.section-aside .logo a span,
.section-aside .logo::before,
.section-aside .logo::after,
.section-aside .logo .logo-badge {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .section-aside .logo a,
  .section-aside .logo a span,
  .section-aside .logo::before,
  .section-aside .logo::after,
  .section-aside .logo .logo-badge,
  .section-aside .logo .logo-top-line,
  .section-aside .logo .logo-bottom-line,
  .section-aside .logo .logo-subtitle {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus styles for accessibility */
.section-aside .logo a:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Logo fade-in animation on page load */
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-aside .logo {
  animation: logoFadeIn 1s ease-out;
}

.section-aside .aside-nav-toggler {
  height: 40px;
  width: 45px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  position: fixed;
  left: 300px;
  top: 20px;
  border-radius: 8px;
  background: var(--bg-primary);
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.section-aside .aside-nav-toggler span {
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  display: inline-block;
  position: relative;
}

.section-aside .aside-nav-toggler span::before {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  position: absolute;
  top: -6px;
  left: 0;
}

.section-aside .aside-nav-toggler span::after {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  position: absolute;
  top: 6px;
  left: 0;
}

.section-aside .aside-nav {
  list-style: none;
}

.section-aside .aside-nav li {
  margin-bottom: 8px;
}

.section-aside .aside-nav li a {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
}

.section-aside .aside-nav li a:hover,
.section-aside .aside-nav li a.active {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.1);
}

.section-aside .aside-nav li a i {
  margin-right: 15px;
  font-size: 18px;
}

/* Main Content Area */
.section-main {
  margin-left: 280px;
  transition: var(--transition);
}

.section-home {
  background: var(--bg-primary);
  min-height: auto;
  padding: 40px 40px;
  opacity: 1;
  position: relative;
  overflow-y: auto;
  transition: var(--transition);
  display: block; /* Ensure all sections are visible */
}

.section-home.active {
  z-index: 2;
  opacity: 1;
  animation: slideIn 0.5s ease;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

/* Home Section */
.home {
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.home .home-info {
  flex: 0 0 60%; /* Take 60% width for content */
  max-width: 60%;
  text-align: left; /* Left align for better reading */
  position: relative;
  z-index: 2;
  padding: 0 30px 0 0;
}

.home .home-visual {
  flex: 0 0 40%; /* Take 40% width for tech showcase */
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Enhanced floating icons with better positioning */
.floating-icon {
  position: absolute;
  animation: enhancedFloat 12s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  font-size: 20px;
  opacity: 0.5;
  z-index: 1;
  pointer-events: auto;
}

.floating-icon-1 {
  top: 10%;
  left: 5%;
  color: #ff9500;
  animation-delay: 0s;
  background: rgba(255, 149, 0, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 149, 0, 0.15);
}

.floating-icon-2 {
  top: 20%;
  right: 15%;
  color: #0db7ed;
  animation-delay: 2s;
  background: rgba(13, 183, 237, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(13, 183, 237, 0.15);
}

.floating-icon-3 {
  bottom: 30%;
  left: 15%;
  color: var(--primary-color);
  animation-delay: 4s;
  background: rgba(37, 99, 235, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.floating-icon-4 {
  bottom: 10%;
  right: 5%;
  color: #3776ab;
  animation-delay: 6s;
  background: rgba(55, 118, 171, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(55, 118, 171, 0.15);
}

.floating-icon-5 {
  top: 60%;
  left: 3%;
  color: #f7df1e;
  animation-delay: 1s;
  background: rgba(247, 223, 30, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(247, 223, 30, 0.15);
}

.floating-icon-6 {
  top: 40%;
  right: 8%;
  color: #61dafb;
  animation-delay: 3s;
  background: rgba(97, 218, 251, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(97, 218, 251, 0.15);
}

.floating-icon-7 {
  bottom: 50%;
  right: 25%;
  color: #e10098;
  animation-delay: 5s;
  background: rgba(225, 0, 152, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(225, 0, 152, 0.15);
}

.floating-icon-8 {
  top: 75%;
  left: 25%;
  color: #326ce5;
  animation-delay: 7s;
  background: rgba(50, 108, 229, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(50, 108, 229, 0.15);
}

/* Enhanced floating animation */
@keyframes enhancedFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg) scale(0.9);
  }
  75% {
    transform: translateY(-25px) rotate(8deg) scale(1.15);
  }
}

.floating-icon:hover {
  transform: scale(1.8) rotate(15deg) !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  z-index: 10;
  opacity: 1;
  pointer-events: all;
}

/* Enhanced hero content animations */
.home .home-info h3.hello {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.home .home-info h1.my-profession {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.home .home-info .hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.home .home-info .hero-stats {
  animation: fadeInUp 0.8s ease 0.8s both;
  margin-bottom: 50px;
}

.home .home-info .hero-actions {
  animation: fadeInUp 0.8s ease 1s both;
  margin-bottom: 40px;
}

.home .home-info .social-links {
  animation: fadeInUp 0.8s ease 1.2s both;
}

/* Animated background elements */
.home::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  animation: backgroundPulse 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes backgroundPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.5;
  }
}

/* Particle effect */
.home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(37, 99, 235, 0.15), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(37, 99, 235, 0.25), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 10% 80%, rgba(37, 99, 235, 0.15), transparent);
  background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px;
  animation: particleMove 20s linear infinite;
  z-index: 0;
}

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

.home .home-info h3.hello .name {
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
}

.home .home-info h3.my-profession {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.home .home-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.home .home-img {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
  position: relative;
}

.home .home-img img {
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
  transition: var(--transition);
}

.home .home-img img:hover {
  transform: scale(1.02);
}

/* Section Titles */
.section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: "";
  height: 4px;
  width: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* About Section */
.about .about-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .about-text {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.about .about-content .about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.about .about-content .about-text h3 span {
  color: var(--primary-color);
}

.about .about-content .about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.about .about-content .personal-info {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 40px;
}

.about .about-content .personal-info .info-item {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 16px;
}

.about .about-content .personal-info .info-item p {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.about .about-content .personal-info .info-item p span {
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 8px;
}

.about .about-content .personal-info .info-item p span a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.about .about-content .personal-info .info-item p span a:hover {
  color: var(--primary-dark);
}

/* Skills */
.about .about-content .skills {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 40px;
}

.about .about-content .skills .skill-item {
  margin-bottom: 30px;
}

.about .about-content .skills .skill-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about .about-content .skills .skill-item .progress {
  background-color: var(--bg-tertiary);
  height: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.about .about-content .skills .skill-item .progress .progress-in {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  transition: width 1s ease;
}

.about .about-content .skills .skill-item .skill-percent {
  position: absolute;
  right: 0;
  top: -35px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
}

/* Education & Timeline */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ===== DEVOPS LOADER STYLES ===== */
.devops-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.devops-loader.fade-out {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
}

/* Cloud Infrastructure Animation */
.cloud-infrastructure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.cloud {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 32px;
  animation: cloudFloat 3s ease-in-out infinite;
}

.cloud-1 {
  animation-delay: 0s;
  color: #3b82f6;
}

.cloud-2 {
  animation-delay: 1s;
  color: #06b6d4;
}

.cloud-3 {
  animation-delay: 2s;
  color: #8b5cf6;
}

.cloud-dots {
  display: flex;
  gap: 4px;
}

.cloud-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: cloudDotPulse 1.5s ease-in-out infinite;
}

.cloud-dots span:nth-child(1) { animation-delay: 0s; }
.cloud-dots span:nth-child(2) { animation-delay: 0.3s; }
.cloud-dots span:nth-child(3) { animation-delay: 0.6s; }

.server-status {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #64748b;
  opacity: 0.4;
}

.status-dot.active {
  background: #22c55e;
  opacity: 1;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.loading {
  background: #f59e0b;
  animation: statusLoading 1s ease-in-out infinite;
}

/* CI/CD Pipeline Animation */
.pipeline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pipeline-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  transition: all 0.5s ease;
}

.pipeline-stage.active {
  opacity: 1;
  transform: scale(1.1);
}

.stage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #64748b;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.pipeline-stage.active .stage-icon {
  border-color: #3b82f6;
  color: #3b82f6;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.stage-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  transition: left 0.5s ease;
}

.pipeline-stage.active .stage-icon::after {
  left: 100%;
}

.stage-progress {
  width: 40px;
  height: 4px;
  background: #334155;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.stage-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.8s ease;
}

.pipeline-stage.active .stage-progress::after {
  left: 0;
}

.stage-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.5s ease;
}

.pipeline-stage.active .stage-label {
  color: #3b82f6;
}

.pipeline-connector {
  width: 30px;
  height: 2px;
  background: #334155;
  position: relative;
  overflow: hidden;
}

.connector-flow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.5s ease;
}

.pipeline-connector.active .connector-flow {
  left: 0;
}

/* Loading Text Animation */
.loading-text-container {
  text-align: center;
  margin: 20px 0;
}

.loading-title {
  margin-bottom: 15px;
}

.loading-title .gradient-text {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease-in-out infinite;
}

.loading-title .title-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  margin-top: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loading-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.process-text {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
  min-width: 200px;
  text-align: left;
}

.loading-dots {
  display: flex;
  gap: 4px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: loadingDotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Progress Bar */
.main-progress-container {
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progressGradient 2s ease-in-out infinite;
}

.progress-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
  transform: translateX(-100%);
  animation: progressGlow 2s ease-in-out infinite;
}

.progress-percentage {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Container Stats */
.container-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.stat-item.active {
  opacity: 1;
  transform: scale(1.1);
}

.stat-item i {
  font-size: 24px;
  color: #64748b;
  transition: color 0.5s ease;
}

.stat-item.active i {
  color: #3b82f6;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #f8fafc;
  text-shadow: 0 0 10px rgba(248, 250, 252, 0.3);
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 20px;
  color: #334155;
  opacity: 0.3;
  animation: particleFloat 15s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  color: #f59e0b;
}

.particle-2 {
  top: 60%;
  left: 80%;
  animation-delay: 3s;
  color: #06b6d4;
}

.particle-3 {
  top: 30%;
  left: 70%;
  animation-delay: 6s;
  color: #8b5cf6;
}

.particle-4 {
  top: 80%;
  left: 20%;
  animation-delay: 9s;
  color: #3b82f6;
}

.particle-5 {
  top: 10%;
  left: 60%;
  animation-delay: 12s;
  color: #22c55e;
}

.particle-6 {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
  color: #ef4444;
}

/* Animations */
@keyframes cloudFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

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

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

@keyframes loadingDotBounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

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

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ===== DEVOPS LOADER STYLES ===== */
.devops-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.devops-loader.fade-out {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
}

/* Cloud Infrastructure Animation */
.cloud-infrastructure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.cloud {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 32px;
  animation: cloudFloat 3s ease-in-out infinite;
}

.cloud-1 {
  animation-delay: 0s;
  color: #3b82f6;
}

.cloud-2 {
  animation-delay: 1s;
  color: #06b6d4;
}

.cloud-3 {
  animation-delay: 2s;
  color: #8b5cf6;
}

.cloud-dots {
  display: flex;
  gap: 4px;
}

.cloud-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: cloudDotPulse 1.5s ease-in-out infinite;
}

.cloud-dots span:nth-child(1) { animation-delay: 0s; }
.cloud-dots span:nth-child(2) { animation-delay: 0.3s; }
.cloud-dots span:nth-child(3) { animation-delay: 0.6s; }

.server-status {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #64748b;
  opacity: 0.4;
}

.status-dot.active {
  background: #22c55e;
  opacity: 1;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.loading {
  background: #f59e0b;
  animation: statusLoading 1s ease-in-out infinite;
}

/* CI/CD Pipeline Animation */
.pipeline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pipeline-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  transition: all 0.5s ease;
}

.pipeline-stage.active {
  opacity: 1;
  transform: scale(1.1);
}

.stage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #64748b;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.pipeline-stage.active .stage-icon {
  border-color: #3b82f6;
  color: #3b82f6;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.stage-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  transition: left 0.5s ease;
}

.pipeline-stage.active .stage-icon::after {
  left: 100%;
}

.stage-progress {
  width: 40px;
  height: 4px;
  background: #334155;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.stage-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.8s ease;
}

.pipeline-stage.active .stage-progress::after {
  left: 0;
}

.stage-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.5s ease;
}

.pipeline-stage.active .stage-label {
  color: #3b82f6;
}

.pipeline-connector {
  width: 30px;
  height: 2px;
  background: #334155;
  position: relative;
  overflow: hidden;
}

.connector-flow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.5s ease;
}

.pipeline-connector.active .connector-flow {
  left: 0;
}

/* Loading Text Animation */
.loading-text-container {
  text-align: center;
  margin: 20px 0;
}

.loading-title {
  margin-bottom: 15px;
}

.loading-title .gradient-text {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease-in-out infinite;
}

.loading-title .title-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  margin-top: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loading-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.process-text {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
  min-width: 200px;
  text-align: left;
}

.loading-dots {
  display: flex;
  gap: 4px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: loadingDotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Progress Bar */
.main-progress-container {
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progressGradient 2s ease-in-out infinite;
}

.progress-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
  transform: translateX(-100%);
  animation: progressGlow 2s ease-in-out infinite;
}

.progress-percentage {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Container Stats */
.container-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.stat-item.active {
  opacity: 1;
  transform: scale(1.1);
}

.stat-item i {
  font-size: 24px;
  color: #64748b;
  transition: color 0.5s ease;
}

.stat-item.active i {
  color: #3b82f6;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #f8fafc;
  text-shadow: 0 0 10px rgba(248, 250, 252, 0.3);
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 20px;
  color: #334155;
  opacity: 0.3;
  animation: particleFloat 15s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  color: #f59e0b;
}

.particle-2 {
  top: 60%;
  left: 80%;
  animation-delay: 3s;
  color: #06b6d4;
}

.particle-3 {
  top: 30%;
  left: 70%;
  animation-delay: 6s;
  color: #8b5cf6;
}

.particle-4 {
  top: 80%;
  left: 20%;
  animation-delay: 9s;
  color: #3b82f6;
}

.particle-5 {
  top: 10%;
  left: 60%;
  animation-delay: 12s;
  color: #22c55e;
}

.particle-6 {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
  color: #ef4444;
}

/* Animations */
@keyframes cloudFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

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

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

@keyframes loadingDotBounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

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

@keyframes progressGlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.3;
  }
}

/* ===== BEAUTIFUL MOBILE NAVIGATION TOGGLE ===== */

/* Hide hamburger during loader and on desktop by default */
.section-aside .aside-nav-toggler {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Hide hamburger completely during loading state */
body:not(.loader-hidden) .section-aside .aside-nav-toggler {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Only show on tablets and mobile devices AFTER loading */
@media (max-width: 991px) {
  body.loader-hidden .section-aside .aside-nav-toggler {
    display: flex !important;
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 10001 !important;
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 0.95), 
      rgba(59, 130, 246, 0.9)) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 18px !important;
    box-shadow: 
      0 10px 30px rgba(37, 99, 235, 0.3),
      0 5px 15px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    backdrop-filter: blur(12px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    justify-content: center !important;
    align-items: center !important;
    transform: none !important;
    margin: 0 !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler:hover {
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 1), 
      rgba(99, 102, 241, 0.95)) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 
      0 15px 40px rgba(37, 99, 235, 0.4),
      0 8px 25px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }

  /* Modern hamburger icon */
  body.loader-hidden .section-aside .aside-nav-toggler span {
    width: 22px !important;
    height: 2.5px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 2px !important;
    position: relative !important;
    display: block !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler span::before,
  body.loader-hidden .section-aside .aside-nav-toggler span::after {
    content: "" !important;
    width: 22px !important;
    height: 2.5px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 2px !important;
    position: absolute !important;
    left: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler span::before {
    top: -7px !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler span::after {
    top: 7px !important;
  }

  /* Beautiful open state animation */
  body.loader-hidden .section-aside .aside-nav-toggler.open {
    background: linear-gradient(135deg, 
      rgba(6, 182, 212, 0.95), 
      rgba(14, 165, 233, 0.9)) !important;
    transform: rotate(180deg) scale(1.05) !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler.open span {
    background: transparent !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler.open span::before {
    transform: rotate(45deg) !important;
    top: 0 !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler.open span::after {
    transform: rotate(-45deg) !important;
    top: 0 !important;
  }
}

/* Enhanced styling for phones */
@media (max-width: 768px) {
  body.loader-hidden .section-aside .aside-nav-toggler {
    width: 54px !important;
    height: 54px !important;
    border-radius: 17px !important;
    top: 18px !important;
    left: 18px !important;
  }
}

/* Beautiful styling for small phones */
@media (max-width: 480px) {
  body.loader-hidden .section-aside .aside-nav-toggler {
    width: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 0.98), 
      rgba(139, 92, 246, 0.95)) !important;
    box-shadow: 
      0 12px 35px rgba(37, 99, 235, 0.35),
      0 6px 20px rgba(139, 92, 246, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  }
}

/* Dark mode enhancements */
body.dark.loader-hidden .section-aside .aside-nav-toggler {
  background: linear-gradient(135deg, 
    rgba(30, 41, 59, 0.95), 
    rgba(51, 65, 85, 0.9)) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(148, 163, 184, 0.1) !important;
}

body.dark.loader-hidden .section-aside .aside-nav-toggler:hover {
  background: linear-gradient(135deg, 
    rgba(51, 65, 85, 1), 
    rgba(71, 85, 105, 0.95)) !important;
  border-color: rgba(148, 163, 184, 0.3) !important;
}

body.dark.loader-hidden .section-aside .aside-nav-toggler.open {
  background: linear-gradient(135deg, 
    rgba(6, 182, 212, 0.95), 
    rgba(8, 145, 178, 0.9)) !important;
}

/* Remove all conflicting styles that force visibility */
@media (max-width: 1199px) {
  .aside-nav-toggler {
    display: none !important;
  }
  
  /* Override any other conflicting styles */
  .section-aside .aside-nav-toggler {
    display: none !important;
  }
}

/* Ensure clean slate on desktop */
@media (min-width: 992px) {
  .section-aside .aside-nav-toggler {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .devops-loader {
    padding: 20px;
  }

  .loader-container {
    padding: 20px 15px;
    gap: 25px;
    max-width: 100%;
  }

  .cloud-infrastructure {
    max-width: 280px;
    gap: 15px;
  }

  .cloud {
    font-size: 20px;
    gap: 8px;
  }

  .cloud-dots span {
    width: 6px;
    height: 6px;
  }

  .server-status {
    gap: 4px;
  }

  .status-dot {
    width: 8px;
    height: 8px;
  }

  .pipeline-container {
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    align-items: center;
  }

  .pipeline-stage {
    gap: 8px;
  }

  .stage-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .stage-progress {
    width: 30px;
    height: 3px;
  }

  .stage-label {
    font-size: 11px;
  }

  .pipeline-connector {
    width: 3px;
    height: 20px;
    transform: rotate(0deg);
  }

  .connector-flow {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
  }

  .loading-text-container {
    margin: 15px 0;
  }

  .loading-title .gradient-text {
    font-size: 24px;
  }

  .loading-title .title-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .loading-process {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .process-text {
    font-size: 14px;
    min-width: auto;
    text-align: center;
  }

  .loading-dots {
    justify-content: center;
  }

  .main-progress-container {
    max-width: 280px;
  }

  .progress-bar {
    height: 6px;
  }

  .progress-percentage {
    font-size: 16px;
    margin-top: 8px;
  }

  .container-stats {
    max-width: 280px;
    gap: 10px;
  }

  .stat-item {
    gap: 6px;
  }

  .stat-item i {
    font-size: 18px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 10px;
  }

  .particle {
    font-size: 14px;
  }

  /* Adjust particle positions for mobile */
  .particle-1 { top: 15%; left: 5%; }
  .particle-2 { top: 70%; left: 85%; }
  .particle-3 { top: 25%; left: 75%; }
  .particle-4 { top: 85%; left: 15%; }
  .particle-5 { top: 5%; left: 65%; }
  .particle-6 { top: 75%; left: 35%; }
}

/* REMOVED CONFLICTING HAMBURGER STYLES */

/* ===== ULTIMATE MOBILE TOGGLE FIX ===== */
/* This overrides the section-aside positioning issue */
@media (max-width: 1199px) {
  .section-aside .aside-nav-toggler {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    z-index: 999999 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    /* Override parent left positioning */
    margin-left: 280px !important;
  }
  
  /* When aside is open, position correctly */
  .section-aside.open .aside-nav-toggler {
    left: 300px !important;
    margin-left: 0 !important;
  }
}

/* ===== ULTIMATE MOBILE TOGGLE FIX ===== */
@media (max-width: 1199px) {
  /* Create independent toggle positioning */
  .section-aside .aside-nav-toggler {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    z-index: 999999 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  
  /* Force visibility regardless of parent */
  .aside-nav-toggler {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 999999 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 480px) {
  .devops-loader {
    padding: 15px;
  }

  .loader-container {
    padding: 15px 10px;
    gap: 20px;
    max-width: 100%;
  }

  .cloud-infrastructure {
    max-width: 240px;
    gap: 10px;
  }

  .cloud {
    font-size: 18px;
    gap: 6px;
  }

  .cloud-dots span {
    width: 5px;
    height: 5px;
  }

  .status-dot {
    width: 6px;
    height: 6px;
  }

  .pipeline-container {
    max-width: 240px;
    gap: 10px;
  }

  .stage-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .stage-progress {
    width: 25px;
    height: 2px;
  }

  .stage-label {
    font-size: 10px;
  }

  .pipeline-connector {
    height: 15px;
  }

  .loading-title .gradient-text {
    font-size: 20px;
  }

  .loading-title .title-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .process-text {
    font-size: 13px;
  }

  .loading-dots span {
    width: 6px;
    height: 6px;
  }

  .main-progress-container {
    max-width: 240px;
  }

  .progress-bar {
    height: 5px;
  }

  .progress-percentage {
    font-size: 14px;
    margin-top: 6px;
  }

  .container-stats {
    max-width: 240px;
    gap: 8px;
  }

  .stat-item {
    gap: 4px;
  }

  .stat-item i {
    font-size: 16px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 9px;
  }

  .particle {
    font-size: 12px;
  }

  /* Further adjust particles for small screens */
  .particle-1 { top: 10%; left: 2%; }
  .particle-2 { top: 75%; left: 88%; }
  .particle-3 { top: 20%; left: 78%; }
  .particle-4 { top: 88%; left: 12%; }
  .particle-5 { top: 3%; left: 68%; }
  .particle-6 { top: 78%; left: 32%; }
}

/* Ultra-small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
  .loader-container {
    padding: 12px 8px;
    gap: 18px;
  }

  .cloud-infrastructure {
    max-width: 220px;
  }

  .cloud {
    font-size: 16px;
  }

  .pipeline-container {
    max-width: 220px;
  }

  .stage-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .loading-title .gradient-text {
    font-size: 18px;
  }

  .process-text {
    font-size: 12px;
  }

  .main-progress-container {
    max-width: 220px;
  }

  .container-stats {
    max-width: 220px;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .loader-container {
    gap: 15px;
    padding: 15px;
    max-height: 100vh;
    overflow-y: auto;
  }

  .cloud-infrastructure {
    margin-bottom: 10px;
  }

  .pipeline-container {
    flex-direction: row;
    max-width: 90vw;
    gap: 8px;
  }

  .pipeline-connector {
    width: 15px;
    height: 2px;
    transform: rotate(0deg);
  }

  .connector-flow {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
  }

  .loading-text-container {
    margin: 10px 0;
  }

  .main-progress-container {
    margin: 10px 0;
  }

  .container-stats {
    margin: 10px 0;
  }

  /* Adjust particles for landscape */
  .particle {
    font-size: 12px;
  }
}

/* Very small landscape screens */
@media (max-width: 480px) and (orientation: landscape) {
  .loader-container {
    gap: 12px;
    padding: 10px;
  }

  .loading-title .gradient-text {
    font-size: 16px;
  }

  .loading-title .title-subtitle {
    font-size: 10px;
  }

  .process-text {
    font-size: 11px;
  }

  .progress-percentage {
    font-size: 12px;
  }

  .stage-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .stage-label {
    font-size: 8px;
  }

  .cloud {
    font-size: 14px;
  }
}

/* Tablet responsive design */
@media (min-width: 769px) and (max-width: 1024px) {
  .loader-container {
    max-width: 500px;
    gap: 35px;
  }

  .cloud-infrastructure {
    max-width: 350px;
  }

  .pipeline-container {
    max-width: 450px;
  }

  .main-progress-container {
    max-width: 350px;
  }

  .container-stats {
    max-width: 350px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .devops-loader {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .loader-container * {
    -webkit-tap-highlight-color: transparent;
  }

  /* Slightly larger touch targets for better accessibility */
  .pipeline-stage {
    min-height: 44px;
    min-width: 44px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .progress-bar {
    border-radius: 6px;
  }

  .stage-icon {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
  }
}

/* Dark Mode Enhancements */
body.dark .devops-loader {
  background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
}

body.dark .stage-icon {
  background: linear-gradient(135deg, #000000, #1e293b);
  border-color: #334155;
}

body.dark .progress-bar {
  background: #000000;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .devops-loader * {
    animation-duration: 0.1s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1s !important;
  }
}

/* ===== END DEVOPS LOADER STYLES ===== */

/* Modern Color Palette */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #06b6d4;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
body.dark {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-home .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Utilities */
.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  border: none;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.shadow-dark {
  box-shadow: var(--shadow-medium);
}

/* Modern Sidebar */
.section-aside {
  width: 280px;
  background: var(--bg-secondary);
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px 30px;
  border-right: 1px solid var(--border-color);
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

/* ===== STUNNING ENHANCED LOGO DESIGN ===== */

.section-aside .logo {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  padding: 30px 0;
  overflow: visible;
}

/* Logo Container with Enhanced Background */
.section-aside .logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.15) 0%, 
    rgba(6, 182, 212, 0.1) 35%, 
    rgba(139, 92, 246, 0.08) 70%, 
    transparent 100%);
  border-radius: 50%;
  opacity: 0.6;
  animation: logoBackgroundPulse 4s ease-in-out infinite;
  z-index: 0;
}

/* Dynamic Floating Particles */
.section-aside .logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: 
    radial-gradient(2px 2px at 20px 30px, rgba(37, 99, 235, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(139, 92, 246, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(6, 182, 212, 0.3), transparent);
  animation: particleFloat 8s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Main Logo Text */
.section-aside .logo a {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  letter-spacing: -1.5px;
  z-index: 10;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    #6366f1 50%,
    #8b5cf6 75%,
    var(--primary-color) 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
  text-shadow: 
    0 0 30px rgba(37, 99, 235, 0.3),
    0 0 60px rgba(6, 182, 212, 0.2),
    0 0 90px rgba(139, 92, 246, 0.1);
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
}

/* Enhanced Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  25% {
    background-position: 100% 0%;
    filter: hue-rotate(90deg);
  }
  50% {
    background-position: 100% 100%;
    filter: hue-rotate(180deg);
  }
  75% {
    background-position: 0% 100%;
    filter: hue-rotate(270deg);
  }
  100% {
    background-position: 0% 50%;
    filter: hue-rotate(360deg);
  }
}

/* Logo Background Pulse Animation */
@keyframes logoBackgroundPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
}

/* Particle Float Animation */
@keyframes particleFloat {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 1;
  }
}

/* Spectacular Hover Effect */
.section-aside .logo a:hover {
  transform: scale(1.15) rotate(2deg);
  filter: drop-shadow(0 0 40px rgba(37, 99, 235, 0.6))
          drop-shadow(0 0 80px rgba(6, 182, 212, 0.4))
          drop-shadow(0 0 120px rgba(139, 92, 246, 0.3));
  text-shadow: 
    0 0 20px rgba(37, 99, 235, 0.8),
    0 0 40px rgba(6, 182, 212, 0.6),
    0 0 60px rgba(139, 92, 246, 0.4),
    0 0 80px rgba(37, 99, 235, 0.2);
}

/* Logo hover background effect */
.section-aside .logo:hover::before {
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.8;
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.3) 0%, 
    rgba(6, 182, 212, 0.2) 35%, 
    rgba(139, 92, 246, 0.15) 70%, 
    transparent 100%);
}

/* Enhanced First Letter - "D" */
.section-aside .logo a span {
  font-size: 48px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  margin-right: 3px;
  background: linear-gradient(45deg, 
    #3b82f6 0%,
    #8b5cf6 25%,
    #06b6d4 50%,
    #f59e0b 75%,
    #ef4444 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: letterGlow 4s ease-in-out infinite;
  text-shadow: 
    0 0 20px rgba(59, 130, 246, 0.8),
    0 0 40px rgba(139, 92, 246, 0.6),
    0 0 60px rgba(6, 182, 212, 0.4);
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
  z-index: 11;
}

/* First Letter Decorative Elements */
.section-aside .logo a span::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, 
    rgba(37, 99, 235, 0.1),
    rgba(139, 92, 246, 0.1),
    rgba(6, 182, 212, 0.1));
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-aside .logo a span:hover::before {
  opacity: 1;
}

/* Enhanced First Letter Hover */
.section-aside .logo a:hover span {
  transform: scale(1.3) rotate(-5deg);
  animation: letterBounce 0.6s ease;
}

/* Enhanced Letter Glow Animation */
@keyframes letterGlow {
  0% {
    background-position: 0% 50%;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1) saturate(1);
  }
  25% {
    background-position: 100% 0%;
    transform: scale(1.05) rotateY(5deg);
    filter: brightness(1.2) saturate(1.3);
  }
  50% {
    background-position: 100% 100%;
    transform: scale(1.1) rotateY(0deg);
    filter: brightness(1.4) saturate(1.5);
  }
  75% {
    background-position: 0% 100%;
    transform: scale(1.05) rotateY(-5deg);
    filter: brightness(1.2) saturate(1.3);
  }
  100% {
    background-position: 0% 50%;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1) saturate(1);
  }
}

/* Letter Bounce Animation */
@keyframes letterBounce {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-3deg); }
  50% { transform: scale(1.4) rotate(-8deg); }
  75% { transform: scale(1.2) rotate(-5deg); }
  100% { transform: scale(1.3) rotate(-5deg); }
}

/* Enhanced Professional Subtitle */
.section-aside .logo .logo-subtitle {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, 
    var(--primary-color), 
    var(--accent-color),
    #8b5cf6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: subtitleGlow 3s ease-in-out infinite;
  z-index: 5;
}

/* Decorative Top Line */
.section-aside .logo .logo-top-line {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%,
    var(--accent-color) 50%,
    #8b5cf6 100%);
  border-radius: 2px;
  opacity: 0.8;
  animation: lineExpand 3s ease-in-out infinite;
}

/* Decorative Bottom Line */
.section-aside .logo .logo-bottom-line {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--primary-color) 25%,
    var(--accent-color) 50%,
    #8b5cf6 75%,
    transparent 100%);
  border-radius: 1px;
  animation: bottomLineShimmer 4s ease-in-out infinite;
}

/* Subtitle Glow Animation */
@keyframes subtitleGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.8;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

/* Line Expand Animation */
@keyframes lineExpand {
  0%, 100% {
    width: 60px;
    opacity: 0.8;
  }
  50% {
    width: 80px;
    opacity: 1;
  }
}

/* Bottom Line Shimmer Animation */
@keyframes bottomLineShimmer {
  0% {
    background-position: -100% 0%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 0%;
    opacity: 1;
  }
  100% {
    background-position: 200% 0%;
    opacity: 0.6;
  }
}

/* Enhanced Logo Container Background */
.section-aside .logo {
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-aside .logo:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  box-shadow: 
    0 12px 48px rgba(37, 99, 235, 0.2),
    0 0 60px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Enhanced Dark Mode Styles */
body.dark .section-aside .logo {
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark .section-aside .logo:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(37, 99, 235, 0.2),
    0 0 120px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark .section-aside .logo::before {
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.2) 0%, 
    rgba(6, 182, 212, 0.15) 35%, 
    rgba(139, 92, 246, 0.1) 70%, 
    transparent 100%);
}

body.dark .section-aside .logo .logo-subtitle {
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}

body.dark .section-aside .logo a {
  text-shadow: 
    0 0 40px rgba(37, 99, 235, 0.4),
    0 0 80px rgba(6, 182, 212, 0.3),
    0 0 120px rgba(139, 92, 246, 0.2);
}

body.dark .section-aside .logo a span {
  text-shadow: 
    0 0 30px rgba(59, 130, 246, 1),
    0 0 60px rgba(139, 92, 246, 0.8),
    0 0 90px rgba(6, 182, 212, 0.6);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .section-aside .logo {
    padding: 25px 0;
    margin-bottom: 50px;
  }
  
  .section-aside .logo::before {
    width: 120px;
    height: 120px;
  }
  
  .section-aside .logo::after {
    width: 150px;
    height: 150px;
  }
  
  .section-aside .logo a {
    font-size: 30px;
    letter-spacing: -1px;
  }
  
  .section-aside .logo a span {
    font-size: 40px;
    margin-right: 2px;
  }
  
  .section-aside .logo .logo-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    bottom: -30px;
  }
  
  .section-aside .logo .logo-top-line {
    width: 50px;
    height: 3px;
    top: -12px;
  }
  
  .section-aside .logo .logo-bottom-line {
    width: 60px;
    bottom: -45px;
  }
  
  .section-aside .logo .logo-badge {
    font-size: 8px;
    padding: 4px 8px;
    top: -2px;
    right: -12px;
  }
  
  /* Reduced animations for better mobile performance */
  .section-aside .logo a:hover {
    transform: scale(1.08) rotate(1deg);
  }
  
  .section-aside .logo a:hover span {
    transform: scale(1.2) rotate(-3deg);
  }
}

@media (max-width: 480px) {
  .section-aside .logo {
    padding: 20px 0;
    margin-bottom: 40px;
  }
  
  .section-aside .logo a {
    font-size: 26px;
  }
  
  .section-aside .logo a span {
    font-size: 36px;
  }
  
  .section-aside .logo .logo-subtitle {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  
  .section-aside .logo .logo-badge {
    font-size: 7px;
    padding: 3px 6px;
  }
}

/* Enhanced Professional Logo Badge */
.section-aside .logo .logo-badge {
  position: absolute;
  top: 0px;
  right: -15px;
  background: linear-gradient(135deg, 
    #10b981 0%,
    #059669 50%,
    #047857 100%);
  color: white;
  font-size: 9px;
  padding: 6px 10px;
  border-radius: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  animation: badgePulse 3s ease-in-out infinite;
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.4),
    0 0 20px rgba(5, 150, 105, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 12;
  transition: all 0.4s ease;
}

.section-aside .logo .logo-badge::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.6),
    rgba(5, 150, 105, 0.4));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-aside .logo:hover .logo-badge {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 
    0 6px 20px rgba(16, 185, 129, 0.6),
    0 0 30px rgba(5, 150, 105, 0.4);
}

.section-aside .logo:hover .logo-badge::before {
  opacity: 1;
}

/* Enhanced Badge Pulse Animation */
@keyframes badgePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 
      0 4px 12px rgba(16, 185, 129, 0.4),
      0 0 20px rgba(5, 150, 105, 0.3);
  }
  50% {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 
      0 6px 16px rgba(16, 185, 129, 0.6),
      0 0 30px rgba(5, 150, 105, 0.5);
  }
}

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

/* ===== LOGO PERFORMANCE & ACCESSIBILITY ENHANCEMENTS ===== */

/* Hardware acceleration for smooth animations */
.section-aside .logo a,
.section-aside .logo a span,
.section-aside .logo::before,
.section-aside .logo::after,
.section-aside .logo .logo-badge {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .section-aside .logo a,
  .section-aside .logo a span,
  .section-aside .logo::before,
  .section-aside .logo::after,
  .section-aside .logo .logo-badge,
  .section-aside .logo .logo-top-line,
  .section-aside .logo .logo-bottom-line,
  .section-aside .logo .logo-subtitle {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus styles for accessibility */
.section-aside .logo a:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Logo fade-in animation on page load */
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-aside .logo {
  animation: logoFadeIn 1s ease-out;
}

.section-aside .aside-nav-toggler {
  height: 40px;
  width: 45px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  position: fixed;
  left: 300px;
  top: 20px;
  border-radius: 8px;
  background: var(--bg-primary);
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.section-aside .aside-nav-toggler span {
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  display: inline-block;
  position: relative;
}

.section-aside .aside-nav-toggler span::before {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  position: absolute;
  top: -6px;
  left: 0;
}

.section-aside .aside-nav-toggler span::after {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  position: absolute;
  top: 6px;
  left: 0;
}

.section-aside .aside-nav {
  list-style: none;
}

.section-aside .aside-nav li {
  margin-bottom: 8px;
}

.section-aside .aside-nav li a {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
}

.section-aside .aside-nav li a:hover,
.section-aside .aside-nav li a.active {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.1);
}

.section-aside .aside-nav li a i {
  margin-right: 15px;
  font-size: 18px;
}

/* Main Content Area */
.section-main {
  margin-left: 280px;
  transition: var(--transition);
}

.section-home {
  background: var(--bg-primary);
  min-height: auto;
  padding: 40px 40px;
  opacity: 1;
  position: relative;
  overflow-y: auto;
  transition: var(--transition);
  display: block; /* Ensure all sections are visible */
}

.section-home.active {
  z-index: 2;
  opacity: 1;
  animation: slideIn 0.5s ease;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

/* Home Section */
.home {
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.home .home-info {
  flex: 0 0 60%; /* Take 60% width for content */
  max-width: 60%;
  text-align: left; /* Left align for better reading */
  position: relative;
  z-index: 2;
  padding: 0 30px 0 0;
}

.home .home-visual {
  flex: 0 0 40%; /* Take 40% width for tech showcase */
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Enhanced floating icons with better positioning */
.floating-icon {
  position: absolute;
  animation: enhancedFloat 12s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  font-size: 20px;
  opacity: 0.5;
  z-index: 1;
  pointer-events: auto;
}

.floating-icon-1 {
  top: 10%;
  left: 5%;
  color: #ff9500;
  animation-delay: 0s;
  background: rgba(255, 149, 0, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 149, 0, 0.15);
}

.floating-icon-2 {
  top: 20%;
  right: 15%;
  color: #0db7ed;
  animation-delay: 2s;
  background: rgba(13, 183, 237, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(13, 183, 237, 0.15);
}

.floating-icon-3 {
  bottom: 30%;
  left: 15%;
  color: var(--primary-color);
  animation-delay: 4s;
  background: rgba(37, 99, 235, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.floating-icon-4 {
  bottom: 10%;
  right: 5%;
  color: #3776ab;
  animation-delay: 6s;
  background: rgba(55, 118, 171, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(55, 118, 171, 0.15);
}

.floating-icon-5 {
  top: 60%;
  left: 3%;
  color: #f7df1e;
  animation-delay: 1s;
  background: rgba(247, 223, 30, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(247, 223, 30, 0.15);
}

.floating-icon-6 {
  top: 40%;
  right: 8%;
  color: #61dafb;
  animation-delay: 3s;
  background: rgba(97, 218, 251, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(97, 218, 251, 0.15);
}

.floating-icon-7 {
  bottom: 50%;
  right: 25%;
  color: #e10098;
  animation-delay: 5s;
  background: rgba(225, 0, 152, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(225, 0, 152, 0.15);
}

.floating-icon-8 {
  top: 75%;
  left: 25%;
  color: #326ce5;
  animation-delay: 7s;
  background: rgba(50, 108, 229, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(50, 108, 229, 0.15);
}

/* Enhanced floating animation */
@keyframes enhancedFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg) scale(0.9);
  }
  75% {
    transform: translateY(-25px) rotate(8deg) scale(1.15);
  }
}

.floating-icon:hover {
  transform: scale(1.8) rotate(15deg) !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  z-index: 10;
  opacity: 1;
  pointer-events: all;
}

/* Enhanced hero content animations */
.home .home-info h3.hello {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.home .home-info h1.my-profession {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.home .home-info .hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.home .home-info .hero-stats {
  animation: fadeInUp 0.8s ease 0.8s both;
  margin-bottom: 50px;
}

.home .home-info .hero-actions {
  animation: fadeInUp 0.8s ease 1s both;
  margin-bottom: 40px;
}

.home .home-info .social-links {
  animation: fadeInUp 0.8s ease 1.2s both;
}

/* Animated background elements */
.home::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  animation: backgroundPulse 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes backgroundPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.5;
  }
}

/* Particle effect */
.home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(37, 99, 235, 0.15), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(37, 99, 235, 0.25), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 10% 80%, rgba(37, 99, 235, 0.15), transparent);
  background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px;
  animation: particleMove 20s linear infinite;
  z-index: 0;
}

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

.home .home-info h3.hello .name {
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
}

.home .home-info h3.my-profession {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.home .home-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.home .home-img {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
  position: relative;
}

.home .home-img img {
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
  transition: var(--transition);
}

.home .home-img img:hover {
  transform: scale(1.02);
}

/* Section Titles */
.section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: "";
  height: 4px;
  width: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* About Section */
.about .about-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .about-text {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.about .about-content .about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.about .about-content .about-text h3 span {
  color: var(--primary-color);
}

.about .about-content .about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.about .about-content .personal-info {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 40px;
}

.about .about-content .personal-info .info-item {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 16px;
}

.about .about-content .personal-info .info-item p {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.about .about-content .personal-info .info-item p span {
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 8px;
}

.about .about-content .personal-info .info-item p span a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.about .about-content .personal-info .info-item p span a:hover {
  color: var(--primary-dark);
}

/* Skills */
.about .about-content .skills {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 40px;
}

.about .about-content .skills .skill-item {
  margin-bottom: 30px;
}

.about .about-content .skills .skill-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about .about-content .skills .skill-item .progress {
  background-color: var(--bg-tertiary);
  height: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.about .about-content .skills .skill-item .progress .progress-in {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  transition: width 1s ease;
}

.about .about-content .skills .skill-item .skill-percent {
  position: absolute;
  right: 0;
  top: -35px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
}

/* Education & Timeline */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ===== DEVOPS LOADER STYLES ===== */
.devops-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.devops-loader.fade-out {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
}

/* Cloud Infrastructure Animation */
.cloud-infrastructure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.cloud {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 32px;
  animation: cloudFloat 3s ease-in-out infinite;
}

.cloud-1 {
  animation-delay: 0s;
  color: #3b82f6;
}

.cloud-2 {
  animation-delay: 1s;
  color: #06b6d4;
}

.cloud-3 {
  animation-delay: 2s;
  color: #8b5cf6;
}

.cloud-dots {
  display: flex;
  gap: 4px;
}

.cloud-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: cloudDotPulse 1.5s ease-in-out infinite;
}

.cloud-dots span:nth-child(1) { animation-delay: 0s; }
.cloud-dots span:nth-child(2) { animation-delay: 0.3s; }
.cloud-dots span:nth-child(3) { animation-delay: 0.6s; }

.server-status {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #64748b;
  opacity: 0.4;
}

.status-dot.active {
  background: #22c55e;
  opacity: 1;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.loading {
  background: #f59e0b;
  animation: statusLoading 1s ease-in-out infinite;
}

/* CI/CD Pipeline Animation */
.pipeline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pipeline-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  transition: all 0.5s ease;
}

.pipeline-stage.active {
  opacity: 1;
  transform: scale(1.1);
}

.stage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #64748b;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.pipeline-stage.active .stage-icon {
  border-color: #3b82f6;
  color: #3b82f6;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.stage-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  transition: left 0.5s ease;
}

.pipeline-stage.active .stage-icon::after {
  left: 100%;
}

.stage-progress {
  width: 40px;
  height: 4px;
  background: #334155;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.stage-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.8s ease;
}

.pipeline-stage.active .stage-progress::after {
  left: 0;
}

.stage-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.5s ease;
}

.pipeline-stage.active .stage-label {
  color: #3b82f6;
}

.pipeline-connector {
  width: 30px;
  height: 2px;
  background: #334155;
  position: relative;
  overflow: hidden;
}

.connector-flow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.5s ease;
}

.pipeline-connector.active .connector-flow {
  left: 0;
}

/* Loading Text Animation */
.loading-text-container {
  text-align: center;
  margin: 20px 0;
}

.loading-title {
  margin-bottom: 15px;
}

.loading-title .gradient-text {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease-in-out infinite;
}

.loading-title .title-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  margin-top: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loading-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.process-text {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
  min-width: 200px;
  text-align: left;
}

.loading-dots {
  display: flex;
  gap: 4px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: loadingDotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Progress Bar */
.main-progress-container {
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progressGradient 2s ease-in-out infinite;
}

.progress-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
  transform: translateX(-100%);
  animation: progressGlow 2s ease-in-out infinite;
}

.progress-percentage {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Container Stats */
.container-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.stat-item.active {
  opacity: 1;
  transform: scale(1.1);
}

.stat-item i {
  font-size: 24px;
  color: #64748b;
  transition: color 0.5s ease;
}

.stat-item.active i {
  color: #3b82f6;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #f8fafc;
  text-shadow: 0 0 10px rgba(248, 250, 252, 0.3);
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 20px;
  color: #334155;
  opacity: 0.3;
  animation: particleFloat 15s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  color: #f59e0b;
}

.particle-2 {
  top: 60%;
  left: 80%;
  animation-delay: 3s;
  color: #06b6d4;
}

.particle-3 {
  top: 30%;
  left: 70%;
  animation-delay: 6s;
  color: #8b5cf6;
}

.particle-4 {
  top: 80%;
  left: 20%;
  animation-delay: 9s;
  color: #3b82f6;
}

.particle-5 {
  top: 10%;
  left: 60%;
  animation-delay: 12s;
  color: #22c55e;
}

.particle-6 {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
  color: #ef4444;
}

/* Animations */
@keyframes cloudFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

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

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

@keyframes loadingDotBounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

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

@keyframes progressGlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.3;
  }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .devops-loader {
    padding: 20px;
  }

  .loader-container {
    padding: 20px 15px;
    gap: 25px;
    max-width: 100%;
  }

  .cloud-infrastructure {
    max-width: 280px;
    gap: 15px;
  }

  .cloud {
    font-size: 20px;
    gap: 8px;
  }

  .cloud-dots span {
    width: 6px;
    height: 6px;
  }

  .server-status {
    gap: 4px;
  }

  .status-dot {
    width: 8px;
    height: 8px;
  }

  .pipeline-container {
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    align-items: center;
  }

  .pipeline-stage {
    gap: 8px;
  }

  .stage-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .stage-progress {
    width: 30px;
    height: 3px;
  }

  .stage-label {
    font-size: 11px;
  }

  .pipeline-connector {
    width: 3px;
    height: 20px;
    transform: rotate(0deg);
  }

  .connector-flow {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
  }

  .loading-text-container {
    margin: 15px 0;
  }

  .loading-title .gradient-text {
    font-size: 24px;
  }

  .loading-title .title-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .loading-process {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .process-text {
    font-size: 14px;
    min-width: auto;
    text-align: center;
  }

  .loading-dots {
    justify-content: center;
  }

  .main-progress-container {
    max-width: 280px;
  }

  .progress-bar {
    height: 6px;
  }

  .progress-percentage {
    font-size: 16px;
    margin-top: 8px;
  }

  .container-stats {
    max-width: 280px;
    gap: 10px;
  }

  .stat-item {
    gap: 6px;
  }

  .stat-item i {
    font-size: 18px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 10px;
  }

  .particle {
    font-size: 14px;
  }

  /* Adjust particle positions for mobile */
  .particle-1 { top: 15%; left: 5%; }
  .particle-2 { top: 70%; left: 85%; }
  .particle-3 { top: 25%; left: 75%; }
  .particle-4 { top: 85%; left: 15%; }
  .particle-5 { top: 5%; left: 65%; }
  .particle-6 { top: 75%; left: 35%; }
}

@media (max-width: 480px) {
  .devops-loader {
    padding: 15px;
  }

  .loader-container {
    padding: 15px 10px;
    gap: 20px;
    max-width: 100%;
  }

  .cloud-infrastructure {
    max-width: 240px;
    gap: 10px;
  }

  .cloud {
    font-size: 18px;
    gap: 6px;
  }

  .cloud-dots span {
    width: 5px;
    height: 5px;
  }

  .status-dot {
    width: 6px;
    height: 6px;
  }

  .pipeline-container {
    max-width: 240px;
    gap: 10px;
  }

  .stage-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .stage-progress {
    width: 25px;
    height: 2px;
  }

  .stage-label {
    font-size: 10px;
  }

  .pipeline-connector {
    height: 15px;
  }

  .loading-title .gradient-text {
    font-size: 20px;
  }

  .loading-title .title-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .process-text {
    font-size: 13px;
  }

  .loading-dots span {
    width: 6px;
    height: 6px;
  }

  .main-progress-container {
    max-width: 240px;
  }

  .progress-bar {
    height: 5px;
  }

  .progress-percentage {
    font-size: 14px;
    margin-top: 6px;
  }

  .container-stats {
    max-width: 240px;
    gap: 8px;
  }

  .stat-item {
    gap: 4px;
  }

  .stat-item i {
    font-size: 16px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 9px;
  }

  .particle {
    font-size: 12px;
  }

  /* Further adjust particles for small screens */
  .particle-1 { top: 10%; left: 2%; }
  .particle-2 { top: 75%; left: 88%; }
  .particle-3 { top: 20%; left: 78%; }
  .particle-4 { top: 88%; left: 12%; }
  .particle-5 { top: 3%; left: 68%; }
  .particle-6 { top: 78%; left: 32%; }
}

/* Ultra-small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
  .loader-container {
    padding: 12px 8px;
    gap: 18px;
  }

  .cloud-infrastructure {
    max-width: 220px;
  }

  .cloud {
    font-size: 16px;
  }

  .pipeline-container {
    max-width: 220px;
  }

  .stage-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .loading-title .gradient-text {
    font-size: 18px;
  }

  .process-text {
    font-size: 12px;
  }

  .main-progress-container {
    max-width: 220px;
  }

  .container-stats {
    max-width: 220px;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .loader-container {
    gap: 15px;
    padding: 15px;
    max-height: 100vh;
    overflow-y: auto;
  }

  .cloud-infrastructure {
    margin-bottom: 10px;
  }

  .pipeline-container {
    flex-direction: row;
    max-width: 90vw;
    gap: 8px;
  }

  .pipeline-connector {
    width: 15px;
    height: 2px;
    transform: rotate(0deg);
  }

  .connector-flow {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
  }

  .loading-text-container {
    margin: 10px 0;
  }

  .main-progress-container {
    margin: 10px 0;
  }

  .container-stats {
    margin: 10px 0;
  }

  /* Adjust particles for landscape */
  .particle {
    font-size: 12px;
  }
}

/* Very small landscape screens */
@media (max-width: 480px) and (orientation: landscape) {
  .loader-container {
    gap: 12px;
    padding: 10px;
  }

  .loading-title .gradient-text {
    font-size: 16px;
  }

  .loading-title .title-subtitle {
    font-size: 10px;
  }

  .process-text {
    font-size: 11px;
  }

  .progress-percentage {
    font-size: 12px;
  }

  .stage-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .stage-label {
    font-size: 8px;
  }

  .cloud {
    font-size: 14px;
  }
}

/* Tablet responsive design */
@media (min-width: 769px) and (max-width: 1024px) {
  .loader-container {
    max-width: 500px;
    gap: 35px;
  }

  .cloud-infrastructure {
    max-width: 350px;
  }

  .pipeline-container {
    max-width: 450px;
  }

  .main-progress-container {
    max-width: 350px;
  }

  .container-stats {
    max-width: 350px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .devops-loader {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .loader-container * {
    -webkit-tap-highlight-color: transparent;
  }

  /* Slightly larger touch targets for better accessibility */
  .pipeline-stage {
    min-height: 44px;
    min-width: 44px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .progress-bar {
    border-radius: 6px;
  }

  .stage-icon {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
  }
}

/* Dark Mode Enhancements */
body.dark .devops-loader {
  background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
}

body.dark .stage-icon {
  background: linear-gradient(135deg, #000000, #1e293b);
  border-color: #334155;
}

body.dark .progress-bar {
  background: #000000;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .devops-loader * {
    animation-duration: 0.1s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1s !important;
  }
}

/* ===== END DEVOPS LOADER STYLES ===== */

/* Modern Color Palette */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #06b6d4;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
body.dark {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-home .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Utilities */
.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  border: none;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.shadow-dark {
  box-shadow: var(--shadow-medium);
}

/* Modern Sidebar */
.section-aside {
  width: 280px;
  background: var(--bg-secondary);
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px 30px;
  border-right: 1px solid var(--border-color);
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

/* ===== STUNNING ENHANCED LOGO DESIGN ===== */

.section-aside .logo {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  padding: 30px 0;
  overflow: visible;
}

/* Logo Container with Enhanced Background */
.section-aside .logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.15) 0%, 
    rgba(6, 182, 212, 0.1) 35%, 
    rgba(139, 92, 246, 0.08) 70%, 
    transparent 100%);
  border-radius: 50%;
  opacity: 0.6;
  animation: logoBackgroundPulse 4s ease-in-out infinite;
  z-index: 0;
}

/* Dynamic Floating Particles */
.section-aside .logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: 
    radial-gradient(2px 2px at 20px 30px, rgba(37, 99, 235, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(139, 92, 246, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(6, 182, 212, 0.3), transparent);
  animation: particleFloat 8s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Main Logo Text */
.section-aside .logo a {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  letter-spacing: -1.5px;
  z-index: 10;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    #6366f1 50%,
    #8b5cf6 75%,
    var(--primary-color) 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
  text-shadow: 
    0 0 30px rgba(37, 99, 235, 0.3),
    0 0 60px rgba(6, 182, 212, 0.2),
    0 0 90px rgba(139, 92, 246, 0.1);
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
}

/* Enhanced Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  25% {
    background-position: 100% 0%;
    filter: hue-rotate(90deg);
  }
  50% {
    background-position: 100% 100%;
    filter: hue-rotate(180deg);
  }
  75% {
    background-position: 0% 100%;
    filter: hue-rotate(270deg);
  }
  100% {
    background-position: 0% 50%;
    filter: hue-rotate(360deg);
  }
}

/* Logo Background Pulse Animation */
@keyframes logoBackgroundPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
}

/* Particle Float Animation */
@keyframes particleFloat {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 1;
  }
}

/* Spectacular Hover Effect */
.section-aside .logo a:hover {
  transform: scale(1.15) rotate(2deg);
  filter: drop-shadow(0 0 40px rgba(37, 99, 235, 0.6))
          drop-shadow(0 0 80px rgba(6, 182, 212, 0.4))
          drop-shadow(0 0 120px rgba(139, 92, 246, 0.3));
  text-shadow: 
    0 0 20px rgba(37, 99, 235, 0.8),
    0 0 40px rgba(6, 182, 212, 0.6),
    0 0 60px rgba(139, 92, 246, 0.4),
    0 0 80px rgba(37, 99, 235, 0.2);
}

/* Logo hover background effect */
.section-aside .logo:hover::before {
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.8;
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.3) 0%, 
    rgba(6, 182, 212, 0.2) 35%, 
    rgba(139, 92, 246, 0.15) 70%, 
    transparent 100%);
}

/* Enhanced First Letter - "D" */
.section-aside .logo a span {
  font-size: 48px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  margin-right: 3px;
  background: linear-gradient(45deg, 
    #3b82f6 0%,
    #8b5cf6 25%,
    #06b6d4 50%,
    #f59e0b 75%,
    #ef4444 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: letterGlow 4s ease-in-out infinite;
  text-shadow: 
    0 0 20px rgba(59, 130, 246, 0.8),
    0 0 40px rgba(139, 92, 246, 0.6),
    0 0 60px rgba(6, 182, 212, 0.4);
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
  z-index: 11;
}

/* First Letter Decorative Elements */
.section-aside .logo a span::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, 
    rgba(37, 99, 235, 0.1),
    rgba(139, 92, 246, 0.1),
    rgba(6, 182, 212, 0.1));
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-aside .logo a span:hover::before {
  opacity: 1;
}

/* Enhanced First Letter Hover */
.section-aside .logo a:hover span {
  transform: scale(1.3) rotate(-5deg);
  animation: letterBounce 0.6s ease;
}

/* Enhanced Letter Glow Animation */
@keyframes letterGlow {
  0% {
    background-position: 0% 50%;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1) saturate(1);
  }
  25% {
    background-position: 100% 0%;
    transform: scale(1.05) rotateY(5deg);
    filter: brightness(1.2) saturate(1.3);
  }
  50% {
    background-position: 100% 100%;
    transform: scale(1.1) rotateY(0deg);
    filter: brightness(1.4) saturate(1.5);
  }
  75% {
    background-position: 0% 100%;
    transform: scale(1.05) rotateY(-5deg);
    filter: brightness(1.2) saturate(1.3);
  }
  100% {
    background-position: 0% 50%;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1) saturate(1);
  }
}

/* Letter Bounce Animation */
@keyframes letterBounce {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-3deg); }
  50% { transform: scale(1.4) rotate(-8deg); }
  75% { transform: scale(1.2) rotate(-5deg); }
  100% { transform: scale(1.3) rotate(-5deg); }
}

/* Enhanced Professional Subtitle */
.section-aside .logo .logo-subtitle {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, 
    var(--primary-color), 
    var(--accent-color),
    #8b5cf6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: subtitleGlow 3s ease-in-out infinite;
  z-index: 5;
}

/* Decorative Top Line */
.section-aside .logo .logo-top-line {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%,
    var(--accent-color) 50%,
    #8b5cf6 100%);
  border-radius: 2px;
  opacity: 0.8;
  animation: lineExpand 3s ease-in-out infinite;
}

/* Decorative Bottom Line */
.section-aside .logo .logo-bottom-line {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--primary-color) 25%,
    var(--accent-color) 50%,
    #8b5cf6 75%,
    transparent 100%);
  border-radius: 1px;
  animation: bottomLineShimmer 4s ease-in-out infinite;
}

/* Subtitle Glow Animation */
@keyframes subtitleGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.8;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

/* Line Expand Animation */
@keyframes lineExpand {
  0%, 100% {
    width: 60px;
    opacity: 0.8;
  }
  50% {
    width: 80px;
    opacity: 1;
  }
}

/* Bottom Line Shimmer Animation */
@keyframes bottomLineShimmer {
  0% {
    background-position: -100% 0%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 0%;
    opacity: 1;
  }
  100% {
    background-position: 200% 0%;
    opacity: 0.6;
  }
}

/* Enhanced Logo Container Background */
.section-aside .logo {
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-aside .logo:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  box-shadow: 
    0 12px 48px rgba(37, 99, 235, 0.2),
    0 0 60px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Enhanced Dark Mode Styles */
body.dark .section-aside .logo {
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark .section-aside .logo:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(37, 99, 235, 0.2),
    0 0 120px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark .section-aside .logo::before {
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.2) 0%, 
    rgba(6, 182, 212, 0.15) 35%, 
    rgba(139, 92, 246, 0.1) 70%, 
    transparent 100%);
}

body.dark .section-aside .logo .logo-subtitle {
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}

body.dark .section-aside .logo a {
  text-shadow: 
    0 0 40px rgba(37, 99, 235, 0.4),
    0 0 80px rgba(6, 182, 212, 0.3),
    0 0 120px rgba(139, 92, 246, 0.2);
}

body.dark .section-aside .logo a span {
  text-shadow: 
    0 0 30px rgba(59, 130, 246, 1),
    0 0 60px rgba(139, 92, 246, 0.8),
    0 0 90px rgba(6, 182, 212, 0.6);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .section-aside .logo {
    padding: 25px 0;
    margin-bottom: 50px;
  }
  
  .section-aside .logo::before {
    width: 120px;
    height: 120px;
  }
  
  .section-aside .logo::after {
    width: 150px;
    height: 150px;
  }
  
  .section-aside .logo a {
    font-size: 30px;
    letter-spacing: -1px;
  }
  
  .section-aside .logo a span {
    font-size: 40px;
    margin-right: 2px;
  }
  
  .section-aside .logo .logo-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    bottom: -30px;
  }
  
  .section-aside .logo .logo-top-line {
    width: 50px;
    height: 3px;
    top: -12px;
  }
  
  .section-aside .logo .logo-bottom-line {
    width: 60px;
    bottom: -45px;
  }
  
  .section-aside .logo .logo-badge {
    font-size: 8px;
    padding: 4px 8px;
    top: -2px;
    right: -12px;
  }
  
  /* Reduced animations for better mobile performance */
  .section-aside .logo a:hover {
    transform: scale(1.08) rotate(1deg);
  }
  
  .section-aside .logo a:hover span {
    transform: scale(1.2) rotate(-3deg);
  }
}

@media (max-width: 480px) {
  .section-aside .logo {
    padding: 20px 0;
    margin-bottom: 40px;
  }
  
  .section-aside .logo a {
    font-size: 26px;
  }
  
  .section-aside .logo a span {
    font-size: 36px;
  }
  
  .section-aside .logo .logo-subtitle {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  
  .section-aside .logo .logo-badge {
    font-size: 7px;
    padding: 3px 6px;
  }
}

/* Enhanced Professional Logo Badge */
.section-aside .logo .logo-badge {
  position: absolute;
  top: 0px;
  right: -15px;
  background: linear-gradient(135deg, 
    #10b981 0%,
    #059669 50%,
    #047857 100%);
  color: white;
  font-size: 9px;
  padding: 6px 10px;
  border-radius: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  animation: badgePulse 3s ease-in-out infinite;
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.4),
    0 0 20px rgba(5, 150, 105, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 12;
  transition: all 0.4s ease;
}

.section-aside .logo .logo-badge::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.6),
    rgba(5, 150, 105, 0.4));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-aside .logo:hover .logo-badge {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 
    0 6px 20px rgba(16, 185, 129, 0.6),
    0 0 30px rgba(5, 150, 105, 0.4);
}

.section-aside .logo:hover .logo-badge::before {
  opacity: 1;
}

/* Enhanced Badge Pulse Animation */
@keyframes badgePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 
      0 4px 12px rgba(16, 185, 129, 0.4),
      0 0 20px rgba(5, 150, 105, 0.3);
  }
  50% {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 
      0 6px 16px rgba(16, 185, 129, 0.6),
      0 0 30px rgba(5, 150, 105, 0.5);
  }
}

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

/* ===== LOGO PERFORMANCE & ACCESSIBILITY ENHANCEMENTS ===== */

/* Hardware acceleration for smooth animations */
.section-aside .logo a,
.section-aside .logo a span,
.section-aside .logo::before,
.section-aside .logo::after,
.section-aside .logo .logo-badge {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .section-aside .logo a,
  .section-aside .logo a span,
  .section-aside .logo::before,
  .section-aside .logo::after,
  .section-aside .logo .logo-badge,
  .section-aside .logo .logo-top-line,
  .section-aside .logo .logo-bottom-line,
  .section-aside .logo .logo-subtitle {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus styles for accessibility */
.section-aside .logo a:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Logo fade-in animation on page load */
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-aside .logo {
  animation: logoFadeIn 1s ease-out;
}

.section-aside .aside-nav-toggler {
  height: 40px;
  width: 45px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  position: fixed;
  left: 300px;
  top: 20px;
  border-radius: 8px;
  background: var(--bg-primary);
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.section-aside .aside-nav-toggler span {
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  display: inline-block;
  position: relative;
}

.section-aside .aside-nav-toggler span::before {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  position: absolute;
  top: -6px;
  left: 0;
}

.section-aside .aside-nav-toggler span::after {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  position: absolute;
  top: 6px;
  left: 0;
}

.section-aside .aside-nav {
  list-style: none;
}

.section-aside .aside-nav li {
  margin-bottom: 8px;
}

.section-aside .aside-nav li a {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
}

.section-aside .aside-nav li a:hover,
.section-aside .aside-nav li a.active {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.1);
}

.section-aside .aside-nav li a i {
  margin-right: 15px;
  font-size: 18px;
}

/* Main Content Area */
.section-main {
  margin-left: 280px;
  transition: var(--transition);
}

.section-home {
  background: var(--bg-primary);
  min-height: auto;
  padding: 40px 40px;
  opacity: 1;
  position: relative;
  overflow-y: auto;
  transition: var(--transition);
  display: block; /* Ensure all sections are visible */
}

.section-home.active {
  z-index: 2;
  opacity: 1;
  animation: slideIn 0.5s ease;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

/* Home Section */
.home {
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.home .home-info {
  flex: 0 0 60%; /* Take 60% width for content */
  max-width: 60%;
  text-align: left; /* Left align for better reading */
  position: relative;
  z-index: 2;
  padding: 0 30px 0 0;
}

.home .home-visual {
  flex: 0 0 40%; /* Take 40% width for tech showcase */
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Enhanced floating icons with better positioning */
.floating-icon {
  position: absolute;
  animation: enhancedFloat 12s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  font-size: 20px;
  opacity: 0.5;
  z-index: 1;
  pointer-events: auto;
}

.floating-icon-1 {
  top: 10%;
  left: 5%;
  color: #ff9500;
  animation-delay: 0s;
  background: rgba(255, 149, 0, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 149, 0, 0.15);
}

.floating-icon-2 {
  top: 20%;
  right: 15%;
  color: #0db7ed;
  animation-delay: 2s;
  background: rgba(13, 183, 237, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(13, 183, 237, 0.15);
}

.floating-icon-3 {
  bottom: 30%;
  left: 15%;
  color: var(--primary-color);
  animation-delay: 4s;
  background: rgba(37, 99, 235, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.floating-icon-4 {
  bottom: 10%;
  right: 5%;
  color: #3776ab;
  animation-delay: 6s;
  background: rgba(55, 118, 171, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(55, 118, 171, 0.15);
}

.floating-icon-5 {
  top: 60%;
  left: 3%;
  color: #f7df1e;
  animation-delay: 1s;
  background: rgba(247, 223, 30, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(247, 223, 30, 0.15);
}

.floating-icon-6 {
  top: 40%;
  right: 8%;
  color: #61dafb;
  animation-delay: 3s;
  background: rgba(97, 218, 251, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(97, 218, 251, 0.15);
}

.floating-icon-7 {
  bottom: 50%;
  right: 25%;
  color: #e10098;
  animation-delay: 5s;
  background: rgba(225, 0, 152, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(225, 0, 152, 0.15);
}

.floating-icon-8 {
  top: 75%;
  left: 25%;
  color: #326ce5;
  animation-delay: 7s;
  background: rgba(50, 108, 229, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(50, 108, 229, 0.15);
}

/* Enhanced floating animation */
@keyframes enhancedFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg) scale(0.9);
  }
  75% {
    transform: translateY(-25px) rotate(8deg) scale(1.15);
  }
}

.floating-icon:hover {
  transform: scale(1.8) rotate(15deg) !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  z-index: 10;
  opacity: 1;
  pointer-events: all;
}

/* Enhanced hero content animations */
.home .home-info h3.hello {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.home .home-info h1.my-profession {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.home .home-info .hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.home .home-info .hero-stats {
  animation: fadeInUp 0.8s ease 0.8s both;
  margin-bottom: 50px;
}

.home .home-info .hero-actions {
  animation: fadeInUp 0.8s ease 1s both;
  margin-bottom: 40px;
}

.home .home-info .social-links {
  animation: fadeInUp 0.8s ease 1.2s both;
}

/* Animated background elements */
.home::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  animation: backgroundPulse 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes backgroundPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.5;
  }
}

/* Particle effect */
.home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(37, 99, 235, 0.15), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(37, 99, 235, 0.25), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 10% 80%, rgba(37, 99, 235, 0.15), transparent);
  background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px;
  animation: particleMove 20s linear infinite;
  z-index: 0;
}

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

.home .home-info h3.hello .name {
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
}

.home .home-info h3.my-profession {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.home .home-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.home .home-img {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
  position: relative;
}

.home .home-img img {
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
  transition: var(--transition);
}

.home .home-img img:hover {
  transform: scale(1.02);
}

/* Section Titles */
.section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: "";
  height: 4px;
  width: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* About Section */
.about .about-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .about-text {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.about .about-content .about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.about .about-content .about-text h3 span {
  color: var(--primary-color);
}

.about .about-content .about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.about .about-content .personal-info {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 40px;
}

.about .about-content .personal-info .info-item {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 16px;
}

.about .about-content .personal-info .info-item p {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.about .about-content .personal-info .info-item p span {
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 8px;
}

.about .about-content .personal-info .info-item p span a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.about .about-content .personal-info .info-item p span a:hover {
  color: var(--primary-dark);
}

/* Skills */
.about .about-content .skills {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 40px;
}

.about .about-content .skills .skill-item {
  margin-bottom: 30px;
}

.about .about-content .skills .skill-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about .about-content .skills .skill-item .progress {
  background-color: var(--bg-tertiary);
  height: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.about .about-content .skills .skill-item .progress .progress-in {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  transition: width 1s ease;
}

.about .about-content .skills .skill-item .skill-percent {
  position: absolute;
  right: 0;
  top: -35px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
}

/* Education & Timeline */
.about .about-content .education {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 60px;
}

.about .about-content h3.title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-align: center;
}

.about .about-content .timeline-box {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .timeline {
  background-color: var(--bg-secondary);
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  position: relative;
}

.about .about-content .timeline .timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
}

.about .about-content .timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.about .about-content .timeline .timeline-item::before {
  content: "";
  width: 2px;
  position: absolute;
  height: 100%;
  left: 8px;
  top: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.about .about-content .timeline .circle-dot {
  position: absolute;
  left: 0;
  top: 0;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 4px var(--bg-secondary);
}

.about .about-content .timeline .timeline-date {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.about .about-content .timeline .timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about .about-content .timeline .timeline-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Section */
.contact-info-section {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.contact-info-header {
  margin-bottom: 40px;
}

.contact-info-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-info-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: white;
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--primary-dark);
}

/* Social Connect */
.social-connect {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.social-connect h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.social-links-contact {
  display: flex;
  gap: 12px;
}

.social-link-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.social-link-contact.linkedin {
  background: rgba(10, 102, 194, 0.1);
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.2);
}

.social-link-contact.linkedin:hover {
  background: #0a66c2;
  color: white;
  transform: translateY(-2px);
}

.social-link-contact.github {
  background: rgba(36, 41, 47, 0.1);
  color: #24292f;
  border-color: rgba(36, 41, 47, 0.2);
}

.social-link-contact.github:hover {
  background: #24292f;
  color: white;
  transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-form-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  resize: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--bg-primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-medium);
  align-self: flex-start;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.form-note {
  font-size: 14px;
  color: var(--text-muted);
  margin: 8px 0 0 0;
  font-style: italic;
}

/* Skills Section */
.skills .skills-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.skills .skill-category {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 40px;
}

.skills .category-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.skills .category-title i {
  color: var(--primary-color);
  font-size: 22px;
}

.skills .skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills .skill-badge {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-light);
}

.skills .skill-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.skills .skill-badge i {
  font-size: 18px;
  color: var(--primary-color);
  transition: var(--transition);
}

.skills .skill-badge:hover i {
  color: white;
}

.skills .skill-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}

.skills .skill-badge:hover span {
  color: white;
}

/* ===== ENHANCED EXPERIENCE SECTION ===== */

.experience .experience-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.experience .timeline-company {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}

.experience .timeline-location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.experience .timeline-achievements {
  margin-bottom: 16px;
}

.experience .timeline-achievements h6 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 6px;
}

.experience .achievement-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.experience .achievement-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 8px;
  padding-left: 0;
  position: relative;
}

.experience .achievement-list li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.experience .timeline-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.experience .skill-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  transition: var(--transition);
}

.experience .skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

/* ===== ENHANCED CAREER HIGHLIGHTS TIMELINE ===== */

/* Timeline Container */
/* ===== STUNNING TIMELINE BOX CONTAINER ===== */
.experience .timeline-box {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.03) 0%, 
    rgba(6, 182, 212, 0.02) 50%, 
    rgba(139, 92, 246, 0.03) 100%);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 
    0 20px 60px rgba(37, 99, 235, 0.08),
    0 0 40px rgba(6, 182, 212, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  animation: timelineBoxFloat 8s ease-in-out infinite;
}

/* Timeline box floating animation */
@keyframes timelineBoxFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 
      0 20px 60px rgba(37, 99, 235, 0.08),
      0 0 40px rgba(6, 182, 212, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
      0 30px 80px rgba(37, 99, 235, 0.12),
      0 0 60px rgba(6, 182, 212, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

/* Timeline box background particles */
.experience .timeline-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08), transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.06), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(37, 99, 235, 0.05), transparent 30%);
  animation: timelineBoxParticles 15s linear infinite;
  border-radius: 30px;
  z-index: 0;
}

@keyframes timelineBoxParticles {
  0%, 100% {
    opacity: 0.6;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: rotate(180deg) scale(1.1);
  }
}

/* Timeline box shimmer effect */
.experience .timeline-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.03), 
    transparent);
  animation: timelineBoxShimmer 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes timelineBoxShimmer {
  0%, 100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 1;
  }
}

/* Enhanced timeline container */
.experience .timeline {
  position: relative;
  padding: 20px 0;
  z-index: 2;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    transparent 50%, 
    rgba(37, 99, 235, 0.01) 100%);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* Timeline box hover effects */
.experience .timeline-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 40px 100px rgba(37, 99, 235, 0.15),
    0 0 80px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(37, 99, 235, 0.2);
}

.experience .timeline-box:hover::before {
  animation-duration: 10s;
  opacity: 1;
}

.experience .timeline-box:hover::after {
  animation-duration: 4s;
}

/* Timeline box entrance animation */
.experience .timeline-box {
  animation: timelineBoxEntrance 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both, 
             timelineBoxFloat 8s ease-in-out 1.3s infinite;
}

@keyframes timelineBoxEntrance {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    box-shadow: none;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 
      0 20px 60px rgba(37, 99, 235, 0.08),
      0 0 40px rgba(6, 182, 212, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

/* Enhanced timeline line with more effects */
.experience .timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, 
    var(--primary-color) 0%, 
    var(--accent-color) 30%,
    rgba(139, 92, 246, 0.8) 50%,
    var(--accent-color) 70%, 
    var(--primary-color) 100%);
  border-radius: 2px;
  box-shadow: 
    0 0 10px rgba(37, 99, 235, 0.4),
    0 0 20px rgba(6, 182, 212, 0.2),
    0 0 30px rgba(139, 92, 246, 0.1);
  animation: timelineLineGlow 4s ease-in-out infinite;
}

@keyframes timelineLineGlow {
  0%, 100% {
    box-shadow: 
      0 0 10px rgba(37, 99, 235, 0.4),
      0 0 20px rgba(6, 182, 212, 0.2),
      0 0 30px rgba(139, 92, 246, 0.1);
  }
  50% {
    box-shadow: 
      0 0 20px rgba(37, 99, 235, 0.6),
      0 0 40px rgba(6, 182, 212, 0.4),
      0 0 60px rgba(139, 92, 246, 0.2);
  }
}

/* Mobile responsiveness for timeline box */
@media (max-width: 768px) {
  .experience .timeline-box {
    margin: 0 15px;
    padding: 25px 20px;
    border-radius: 20px;
    animation: timelineBoxFloat 10s ease-in-out infinite; /* Slower on mobile */
  }
  
  .experience .timeline-box:hover {
    transform: translateY(-4px) scale(1.01); /* Less aggressive on mobile */
  }
}

@media (max-width: 480px) {
  .experience .timeline-box {
    margin: 0 10px;
    padding: 20px 15px;
    border-radius: 15px;
  }
  
  .experience .timeline-box::before,
  .experience .timeline-box::after {
    display: none; /* Remove complex animations on very small screens */
  }
}

/* Timeline Item */
.experience .timeline-item {
  position: relative;
  margin-left: 80px;
  margin-bottom: 50px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

/* Enhanced Timeline Item Hover Effect */
.experience .timeline-item:hover {
  transform: translateY(-12px) translateX(6px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(37, 99, 235, 0.15),
    0 0 60px rgba(6, 182, 212, 0.1);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, 
    var(--bg-primary) 0%, 
    rgba(37, 99, 235, 0.03) 100%);
}

.experience .timeline-item:hover::after {
  opacity: 1;
}

/* Timeline Item Background Effect */
.experience .timeline-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.02) 0%, 
    rgba(6, 182, 212, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Remove last item margin */
.experience .timeline-item:last-child {
  margin-bottom: 0;
}

/* Timeline Dot */
.experience .circle-dot {
  position: absolute;
  left: -48px;
  top: 32px;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 4px solid var(--bg-primary);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 3px var(--primary-color);
  transition: all 0.3s ease;
}

.experience .timeline-item:hover .circle-dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.3);
}

/* Timeline Date Badge */
.experience .timeline-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 25px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.experience .timeline-date i {
  font-size: 12px;
}

/* Job Title */
.experience .timeline-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

/* Company Info */
.experience .timeline-company {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.experience .timeline-company i {
  font-size: 14px;
  opacity: 0.8;
}

/* Location */
.experience .timeline-location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.experience .timeline-location i {
  font-size: 12px;
  opacity: 0.7;
}

/* Achievements Section */
.experience .timeline-achievements {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.experience .timeline-achievements h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.experience .timeline-achievements h6::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
}

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

.experience .achievement-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.experience .achievement-list li:last-child {
  margin-bottom: 0;
}

/* Highlight strong text */
.experience .achievement-list li strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Skills Tags Container */
.experience .timeline-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

/* Enhanced Individual Skill Tags with Floating Effects */
.experience .skill-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

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

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

.experience .skill-tag:hover {
  transform: translateY(-4px) scale(1.08) rotate(1deg);
  box-shadow: 
    0 8px 25px rgba(37, 99, 235, 0.5),
    0 0 30px rgba(6, 182, 212, 0.3);
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Certifications Section */
.certifications .certifications-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.certifications .cert-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 30px;
}

.certifications .cert-item-inner {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.certifications .cert-item-inner:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
  border-color: var(--primary-color);
}

.certifications .cert-icon {
  margin-bottom: 20px;
}

.certifications .cert-icon i {
  font-size: 48px;
  color: var(--primary-color);
  transition: var(--transition);
}

.certifications .cert-item-inner:hover .cert-icon i {
  transform: scale(1.1);
  color: var(--accent-color);
}

.certifications .cert-item-inner h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.certifications .cert-provider {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-style: italic;
}

.certifications .cert-platform {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.certifications .cert-item-inner h4 .cert-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.certifications .cert-item-inner h4 .cert-link:hover {
  color: var(--primary-color);
}

.certifications .verify-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.1);
  transition: var(--transition);
}

.certifications .verify-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.certifications .verify-link i {
  font-size: 10px;
}

.certifications .cert-status {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.certifications .status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certifications .status-badge.completed {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.certifications .status-badge.in-progress {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

/* Employment Status Styles */
.status-employed {
  color: #3b82f6 !important;
  font-weight: 600;
}

.status-available {
  color: #10b981 !important;
  font-weight: 600;
}

/* Current Role Styling */
.journey-item.current-role {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
  border-left: 4px solid #3b82f6;
  position: relative;
}

.journey-item.current-role::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -8px;
  width: 12px;
  height: 12px;
  background: #3b82f6;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
}

.role-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.status-badge {
  background: #3b82f6;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-name {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  font-style: italic;
}

/* Hero Badge Styling for Employment Status */
.hero-badge .badge-text {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .section-aside {
    left: -280px;
  }
  
  .section-aside.open {
    left: 0;
  }
  
  .section-aside .aside-nav-toggler {
    display: flex !important;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    animation: mobileTogglePulse 2s infinite;
  }
  
  .section-aside .aside-nav-toggler.open {
    left: 260px;
    background: var(--primary-color);
  }
  
  .section-aside .aside-nav-toggler.open span,
  .section-aside .aside-nav-toggler.open span::before,
  .section-aside .aside-nav-toggler.open span::after {
    background: white;
  }
  
  /* Enhanced mobile toggle animations */
  @keyframes mobileTogglePulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    }
  }
  
  /* Mobile toggle hover effect */
  .section-aside .aside-nav-toggler:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
    animation: none;
  }
  
  /* Enhanced visibility for smaller screens */
  @media (max-width: 768px) {
    .section-aside .aside-nav-toggler {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      border: 3px solid white;
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4), 0 0 0 2px rgba(37, 99, 235, 0.2);
    }
  
    .section-aside .aside-nav-toggler span {
      width: 20px;
      height: 3px;
      background: white;
    }
  
    .section-aside .aside-nav-toggler span::before,
    .section-aside .aside-nav-toggler span::after {
      width: 20px;
      height: 3px;
      background: white;
    }
  }
  
  /* Ultra-visible for very small screens */
  @media (max-width: 480px) {
    .section-aside .aside-nav-toggler {
      width: 55px;
      height: 55px;
      top: 15px;
      left: 15px;
      background: linear-gradient(135deg, #ff6b6b, #ee5a24);
      border: 4px solid white;
      box-shadow: 
        0 8px 25px rgba(255, 107, 107, 0.5),
        0 0 0 3px rgba(255, 107, 107, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
      animation: mobileToggleUltraPulse 1.5s infinite;
    }
  
    @keyframes mobileToggleUltraPulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 
          0 8px 25px rgba(255, 107, 107, 0.5),
          0 0 0 3px rgba(255, 107, 107, 0.3),
          inset 0 2px 5px rgba(255, 255, 255, 0.2);
      }
      50% {
        transform: scale(1.1);
        box-shadow: 
          0 12px 35px rgba(255, 107, 107, 0.7),
          0 0 0 5px rgba(255, 107, 107, 0.5),
          inset 0 2px 5px rgba(255, 255, 255, 0.3);
      }
    }
  }
  
  /* Force visibility on all mobile devices */
  @media (max-width: 1199px) {
    .section-aside .aside-nav-toggler {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      pointer-events: auto !important;
    }
  }
  
  .section-main {
    margin-left: 0;
  }
  
  .section-home {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .home .home-info {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .home .home-img {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 40px;
  }
  
  .about .about-content .personal-info,
  .about .about-content .skills {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .skills .skill-category {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .contact .contact-info-item,
  .certifications .cert-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .hero-actions {
    gap: 16px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .social-links-contact {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .home .home-info h3.my-profession {
    font-size: 36px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .contact .contact-form .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .skills .skill-badge {
    padding: 10px 14px;
  }
  
  .skills .skill-badge i {
    font-size: 16px;
  }
  
  .skills .skill-badge span {
    font-size: 13px;
  }
  
  .skills .category-title {
    font-size: 18px;
  }
  
  /* ===== MOBILE CAREER HIGHLIGHTS OPTIMIZATIONS ===== */
  
  /* Timeline vertical line for mobile */
  .experience .timeline::before {
    left: 20px;
    width: 2px;
  }
  
  /* Timeline items mobile layout */
  .experience .timeline-item {
    margin-left: 50px;
    margin-bottom: 40px;
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  /* Timeline dot mobile positioning */
  .experience .circle-dot {
    left: -28px;
    top: 24px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 2px var(--primary-color);
  }
  
  /* Typography adjustments for mobile */
  .experience .timeline-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .experience .timeline-company {
    font-size: 15px;
  }
  
  .experience .timeline-location {
    font-size: 13px;
    margin-bottom: 16px;
  }
  
  .experience .timeline-date {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 14px;
  }
  
  .experience .timeline-achievements h6 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .experience .achievement-list li {
    font-size: 14px;
    margin-bottom: 10px;
    gap: 8px;
  }
  
  /* Skills tags mobile */
  .experience .timeline-skills {
    gap: 8px;
    margin-top: 16px;
  }
  
  .experience .skill-tag {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 16px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 24px;
  }
  
  .floating-elements {
    display: none;
  }
}

/* ===== ENHANCED HOME SECTION ===== */

/* Hero Badge */
.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.badge-text {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
  animation: badgePulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

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

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
  }
}

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

/* Enhanced Typography */
.home .home-info h3.hello {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.home .home-info h1.my-profession {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.6s both;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.profession-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  color: var(--text-secondary);
  font-family: "Inter", sans-serif;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 1s both;
  justify-content: flex-start;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 1.2s both;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-large);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn i {
  margin-right: 8px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.8s ease 1.4s both;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transition: var(--transition);
  z-index: 1;
}

.social-link:hover::before {
  left: 0;
}

.social-link i {
  font-size: 20px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.social-link:hover i {
  color: white;
}

/* Enhanced Image Section */
.image-container {
  position: relative;
  animation: fadeInRight 1s ease 0.5s both;
}

.profile-image {
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.profile-image:hover {
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
}

.tech-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(10px);
}

/* Floating Elements */
.floating-elements {
  position: relative;
  flex: 0 0 25%; /* Take remaining space */
  max-width: 25%;
  min-height: 400px;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon:nth-child(1) {
  top: 10%;
  right: 10%;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 20%;
}

.floating-icon:nth-child(3) {
  top: 20%;
  left: 10%;
}

.floating-icon:nth-child(4) {
  bottom: 20%;
  left: 20%;
}

.floating-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

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

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

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

/* ===== ENHANCED CONTACT SECTION ===== */

.contact {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Section */
.contact-info-section {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.contact-info-header {
  margin-bottom: 40px;
}

.contact-info-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-info-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: white;
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--primary-dark);
}

/* Social Connect */
.social-connect {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.social-connect h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.social-links-contact {
  display: flex;
  gap: 12px;
}

.social-link-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.social-link-contact.linkedin {
  background: rgba(10, 102, 194, 0.1);
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.2);
}

.social-link-contact.linkedin:hover {
  background: #0a66c2;
  color: white;
  transform: translateY(-2px);
}

.social-link-contact.github {
  background: rgba(36, 41, 47, 0.1);
  color: #24292f;
  border-color: rgba(36, 41, 47, 0.2);
}

.social-link-contact.github:hover {
  background: #24292f;
  color: white;
  transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-form-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  resize: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--bg-primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-medium);
  align-self: flex-start;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.form-note {
  font-size: 14px;
  color: var(--text-muted);
  margin: 8px 0 0 0;
  font-style: italic;
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */

@media (max-width: 991px) {
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .hero-actions {
    gap: 16px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .social-links-contact {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 24px;
  }
  
  .floating-elements {
    display: none;
  }
}

/* ===== ENHANCED ABOUT SECTION ===== */

.about-content-wrapper {
  width: 100%;
}

/* Professional Summary */
.about-intro {
  margin-bottom: 50px;
}

.about-intro-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-intro-content h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

.about-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 22px;
  color: white;
}

.highlight-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.highlight-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* About Details Grid */
.about-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* About Cards */
.about-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: var(--primary-color);
}

.card-header {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-header h3 i {
  color: var(--primary-color);
  font-size: 20px;
}

.card-content {
  padding: 25px;
}

/* Contact Information Card */
.info-grid {
  display: grid;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--bg-secondary);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.info-item:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary-color);
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 16px;
  color: white;
}

.info-details {
  flex: 1;
}

.info-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.info-value:hover {
  color: var(--primary-color);
}

.status-available {
  color: #10b981 !important;
  font-weight: 600;
}

/* Skills Card */
.skills-grid {
  display: grid;
  gap: 25px;
}

.skill-category-mini h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.skill-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  transition: var(--transition);
}

.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

/* Education Card */
.education-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.education-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.education-icon i {
  font-size: 22px;
  color: white;
}

.education-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

.university {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.duration {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

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

.grade-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.grade-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

/* Certifications Summary */
.certifications-summary {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.certifications-summary h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.cert-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

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

.cert-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.cert-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.view-certs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.view-certs-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===== PROJECTS SECTION ===== */

.projects {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.projects-intro {
  text-align: center;
  margin-bottom: 50px;
}

.projects-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), rgba(59, 130, 246, 0.01));
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.project-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.project-status {
  display: flex;
  align-items: center;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.production {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.status-badge.development {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.project-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.project-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-metrics {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.metric-item {
  text-align: center;
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

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

.tech-badge {
  padding: 6px 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.project-highlights {
  margin-top: 20px;
}

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

.project-highlights li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.project-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-card {
    padding: 20px;
  }
  
  .project-metrics {
    flex-direction: column;
    gap: 15px;
  }
  
  .metric-item {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .metric-value {
    margin-bottom: 0;
  }
}

/* Animation for project cards */
@keyframes projectSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card {
  animation: projectSlideIn 0.6s ease forwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== DARK THEME STYLES FOR PROJECTS SECTION ===== */

/* Dark theme for Projects section */
body.dark .projects {
  background: var(--bg-primary);
}

body.dark .projects-description {
  color: var(--text-secondary);
}

body.dark .project-card {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark .project-card::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
}

body.dark .project-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

body.dark .project-card:hover::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
}

body.dark .project-content h3 {
  color: var(--text-primary);
}

body.dark .project-description {
  color: var(--text-secondary);
}

body.dark .metric-value {
  color: var(--primary-color);
}

body.dark .metric-label {
  color: var(--text-muted);
}

body.dark .tech-badge {
  background: var(--bg-primary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

body.dark .project-metrics {
  background: var(--bg-primary);
  border-color: var(--border-color);
}

body.dark .project-highlights li {
  color: var(--text-secondary);
}

body.dark .project-highlights li::before {
  color: var(--primary-color);
}

body.dark .project-icon {
  background: var(--bg-primary);
  border-color: var(--border-color);
}

body.dark .project-icon i {
  color: var(--primary-color);
}

body.dark .status-badge.production {
  background: var(--primary-color);
  color: white;
}

body.dark .status-badge.development {
  background: var(--bg-primary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

/* Dark theme for project featured cards */
body.dark .project-card.featured {
  border-color: var(--primary-color);
}

body.dark .project-card.featured::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
}

/* ===== END DARK THEME PROJECTS STYLES =====*/

/* ===== ENHANCED SMOOTH ANIMATIONS & UX ===== */

/* Global Smooth Transitions */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Enhanced Page Load Animations */
@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-home {
  animation: pageLoad 0.8s ease-out;
}

/* Staggered Content Animations */
@keyframes staggeredFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home .home-info > * {
  animation: staggeredFadeIn 0.6s ease-out;
}

.home .home-info h3.hello { animation-delay: 0.1s; }
.home .home-info h1.my-profession { animation-delay: 0.2s; }
.home .home-info .hero-description { animation-delay: 0.3s; }
.home .home-info .hero-stats { animation-delay: 0.4s; }
.home .home-info .hero-actions { animation-delay: 0.5s; }
.home .home-info .social-links { animation-delay: 0.6s; }

/* Enhanced Button Animations */
.btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::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;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}

/* Smooth Card Animations */
.about-card,
.project-card,
.cert-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.about-card:hover,
.project-card:hover,
.cert-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Navigation Animations */
.section-aside .aside-nav li a {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-aside .aside-nav li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.4s ease;
}

.section-aside .aside-nav li a:hover::before {
  left: 100%;
}

.section-aside .aside-nav li a:hover {
  transform: translateX(5px);
  padding-left: 25px;
}

/* Smooth Image Animations */
.profile-image,
.home-img img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image:hover,
.home-img img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Enhanced Floating Elements */
.floating-icon {
  animation: smoothFloat 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes smoothFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(5deg);
  }
  50% {
    transform: translateY(-5px) rotate(-5deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}

.floating-icon:hover {
  transform: scale(1.3) rotate(15deg) !important;
  color: var(--primary-color);
}

/* Smooth Section Transitions */
.section-home {
  opacity: 1; /* Always visible */
  transform: translateX(0); /* No transform */
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-home.active {
  opacity: 1;
  transform: translateX(0);
}

/* Enhanced Skill Badge Animations */
.skill-badge,
.tech-badge,
.skill-tag {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.skill-badge:hover,
.tech-badge:hover,
.skill-tag:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* Smooth Form Animations */
.form-control {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.form-control:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

/* Enhanced Timeline Animations */
.timeline-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.timeline-item:hover {
  transform: translateX(10px) scale(1.02);
  background: linear-gradient(135deg, var(--bg-secondary), rgba(37, 99, 235, 0.05));
}

/* Smooth Loading States */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Enhanced Theme Switcher Animations */
.style-switcher {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.style-switcher-toggler {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.style-switcher-toggler:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.colors span {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.colors span:hover {
  transform: scale(1.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Smooth Social Links */
.social-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.2);
}

/* Enhanced Stats Animation */
.stat-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-number {
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  color: var(--primary-color);
  transform: scale(1.2);
}

/* Smooth Progress Animations */
@keyframes progressLoad {
  from {
    width: 0%;
  }
  to {
    width: var(--progress-width, 0%);
  }
}

.progress-in {
  animation: progressLoad 2s ease-out;
}

/* Enhanced Contact Info Animations */
.contact-info-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover {
  transform: translateX(10px) scale(1.02);
}

.contact-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover .contact-icon {
  transform: scale(1.2) rotate(10deg);
}

/* Smooth Certification Animations */
.cert-item-inner {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-item-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cert-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-item-inner:hover .cert-icon {
  transform: scale(1.3) rotate(15deg);
}

/* Enhanced Project Metrics Animation */
.metric-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.metric-value {
  transition: all 0.3s ease;
}

.project-card:hover .metric-value {
  color: var(--primary-color);
}

/* Smooth Scroll Indicators */
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.scroll-indicator {
  animation: scrollPulse 2s infinite;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .section-home {
    transform: translateY(0); /* Always visible on mobile */
  }
  
  .section-home.active {
    transform: translateY(0);
  }
  
  .floating-icon {
    animation-duration: 4s;
  }
  
  .about-card:hover,
  .project-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

/* Smooth Dark Theme Transitions */
body.dark * {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Focus States for Accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  transition: outline 0.2s ease;
}

/* Smooth Loading Animation for Images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Enhanced Micro-interactions */
.clickable {
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.clickable:active {
  transform: scale(0.98);
}

/* Smooth Page Transitions */
.page-transition {
  opacity: 0;
  transform: translateY(20px);
  animation: pageTransition 0.6s ease-out forwards;
}

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

/* Enhanced Intersection Observer Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Parallax Effect */
.parallax-element {
  transition: transform 0.1s linear;
}

/* Enhanced Hover States */
.interactive-element {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
  filter: brightness(1.1);
}

/* Smooth Text Selection */
::selection {
  background: rgba(37, 99, 235, 0.2);
  color: var(--text-primary);
}

/* ===== ENHANCED FLOATING ELEMENTS & IMAGE CONTAINER ===== */

/* Image Container */
.img-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  overflow: visible;
}

/* Floating Decorative Icons */
.floating-icon-1 {
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 24px;
  color: #ff9500;
  z-index: 1;
}

.floating-icon-2 {
  position: absolute;
  top: 20%;
  right: 15%;
  font-size: 28px;
  color: #0db7ed;
  z-index: 1;
}

.floating-icon-3 {
  position: absolute;
  bottom: 30%;
  left: 5%;
  font-size: 26px;
  color: var(--primary-color);
  z-index: 1;
}

.floating-icon-4 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  font-size: 30px;
  color: #3776ab;
  z-index: 1;
}

/* Enhanced Floating Animation */
@keyframes enhancedFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translateY(-8px) rotate(-3deg) scale(0.95);
  }
  75% {
    transform: translateY(-20px) rotate(8deg) scale(1.1);
  }
}

.floating-icon {
  animation: enhancedFloat 8s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.floating-icon-1 { animation-delay: 0s; }
.floating-icon-2 { animation-delay: 2s; }
.floating-icon-3 { animation-delay: 4s; }
.floating-icon-4 { animation-delay: 6s; }

.floating-icon:hover {
  transform: scale(1.5) rotate(15deg) !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  z-index: 10;
}

/* Enhanced Profile Image */
.profile-image {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  object-fit: cover;
  border: 5px solid var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-image:hover::before {
  opacity: 0.3;
}

.profile-image:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Responsive Floating Elements */
@media (max-width: 768px) {
  .floating-icon {
    font-size: 18px !important;
  }
  
  .floating-icon-1 {
    top: 5% !important;
    left: 5% !important;
  }
  
  .floating-icon-2 {
    top: 10% !important;
    right: 5% !important;
  }
  
  .floating-icon-3 {
    bottom: 25% !important;
    left: 0% !important;
  }
  
  .floating-icon-4 {
    bottom: 10% !important;
    right: 0% !important;
  }
  
  .profile-image {
    width: 220px !important;
    height: 220px !important;
  }
}

/* Additional Mobile Responsiveness for Home Section */
@media (max-width: 991px) {
  .home .home-info {
    padding: 0 40px; /* Medium padding for tablets */
  }
}

@media (max-width: 767px) {
  .home .home-info {
    padding: 0 20px; /* Minimal padding for mobile */
  }
}

/* Tech Showcase Component */
.tech-showcase {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 80px;
}

.tech-item i {
  font-size: 28px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.tech-item span {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tech-item:hover i {
  transform: scale(1.1);
}

.tech-item:hover span {
  opacity: 1;
}

/* Tech item color variants */
.tech-primary {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
  border-color: rgba(37, 99, 235, 0.2);
  color: #2563eb;
}

.tech-secondary {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(14, 165, 233, 0.05));
  border-color: rgba(6, 182, 212, 0.2);
  color: #0891b2;
}

.tech-accent {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.05));
  border-color: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.tech-primary:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.08));
  border-color: rgba(37, 99, 235, 0.3);
}

.tech-secondary:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(14, 165, 233, 0.08));
  border-color: rgba(6, 182, 212, 0.3);
}

.tech-accent:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(147, 51, 234, 0.08));
  border-color: rgba(168, 85, 247, 0.3);
}

/* Responsive adjustments for tech showcase */
@media (max-width: 991px) {
  .home .home-info,
  .home .home-visual {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .home .home-visual {
    margin-top: 40px;
  }
  
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
  }
  
  .tech-item {
    padding: 15px 10px;
    min-height: 70px;
  }
  
  .tech-item i {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .tech-item {
    padding: 12px 8px;
    min-height: 60px;
  }
  
  .tech-item i {
    font-size: 20px;
  }
  
  .tech-item span {
    font-size: 11px;
  }
}

/* ===== ENHANCED USER ENGAGEMENT ANIMATIONS ===== */

/* 1. Scroll-Triggered Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.delay-1 { transition-delay: 0.1s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.2s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.3s; }
.reveal-on-scroll.delay-4 { transition-delay: 0.4s; }

/* 2. Interactive Number Counter Animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-number.counting {
  animation: countUp 0.6s ease-out;
}

/* 3. Typewriter Effect for Dynamic Text */
.typewriter-text {
  border-right: 2px solid var(--primary-color);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { border-color: var(--primary-color); }
  51%, 100% { border-color: transparent; }
}

/* 4. Magnetic Button Effect */
.magnetic-btn {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.magnetic-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.magnetic-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* 5. Parallax Background Elements */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(45deg, 
    rgba(37, 99, 235, 0.03) 0%, 
    rgba(6, 182, 212, 0.03) 50%, 
    rgba(168, 85, 247, 0.03) 100%);
  transform: translateY(0);
  transition: transform 0.1s linear;
  z-index: -1;
}

/* 6. Card Flip Animation for Skills */
.skill-card-3d {
  perspective: 1000px;
  height: 200px;
}

.skill-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.skill-card-3d:hover .skill-card-inner {
  transform: rotateY(180deg);
}

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

.skill-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

/* 7. Progress Bar Fill Animation */
@keyframes progressFill {
  from { width: 0%; }
  to { width: var(--progress-width); }
}

.progress-animated {
  animation: progressFill 2s ease-out forwards;
}

/* 8. Staggered List Item Animations */
.staggered-list li {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.staggered-list.animate li {
  opacity: 1;
  transform: translateX(0);
}

.staggered-list li:nth-child(1) { transition-delay: 0.1s; }
.staggered-list li:nth-child(2) { transition-delay: 0.2s; }
.staggered-list li:nth-child(3) { transition-delay: 0.3s; }
.staggered-list li:nth-child(4) { transition-delay: 0.4s; }
.staggered-list li:nth-child(5) { transition-delay: 0.5s; }

/* 9. Interactive Tech Grid Enhancements */
.tech-item {
  position: relative;
  overflow: hidden;
}

.tech-item::after {
  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;
}

.tech-item:hover::after {
  left: 100%;
}

/* 10. Floating Action Feedback */
.floating-feedback {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.floating-feedback.show {
  transform: translate(-50%, -50%) scale(1);
}

/* 11. Section Entrance Animations */
.section-enter {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-enter.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 12. Interactive Navigation Indicators */
.nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: 1000;
  transition: width 0.2s ease;
}

/* 13. Breathing Animation for Important Elements */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.breathe-animation {
  animation: breathe 3s ease-in-out infinite;
}

/* 14. Text Highlight Animation */
.highlight-text {
  position: relative;
  color: var(--text-primary);
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-text.animate::after {
  width: 100%;
}

/* 15. Cursor Trail Effect */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
  transition: transform 0.1s ease;
}

/* 16. Loading Skeleton Animation */
@keyframes skeleton-loading {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: skeleton-loading 1.5s infinite;
}

/* 17. Success/Error Message Animations */
@keyframes slideInFromTop {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideOutToTop {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-100%); opacity: 0; }
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ===== DEVOPS LOADER STYLES ===== */
.devops-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.devops-loader.fade-out {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
}

/* Cloud Infrastructure Animation */
.cloud-infrastructure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.cloud {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 32px;
  animation: cloudFloat 3s ease-in-out infinite;
}

.cloud-1 {
  animation-delay: 0s;
  color: #3b82f6;
}

.cloud-2 {
  animation-delay: 1s;
  color: #06b6d4;
}

.cloud-3 {
  animation-delay: 2s;
  color: #8b5cf6;
}

.cloud-dots {
  display: flex;
  gap: 4px;
}

.cloud-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: cloudDotPulse 1.5s ease-in-out infinite;
}

.cloud-dots span:nth-child(1) { animation-delay: 0s; }
.cloud-dots span:nth-child(2) { animation-delay: 0.3s; }
.cloud-dots span:nth-child(3) { animation-delay: 0.6s; }

.server-status {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #64748b;
  opacity: 0.4;
}

.status-dot.active {
  background: #22c55e;
  opacity: 1;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.loading {
  background: #f59e0b;
  animation: statusLoading 1s ease-in-out infinite;
}

/* CI/CD Pipeline Animation */
.pipeline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pipeline-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  transition: all 0.5s ease;
}

.pipeline-stage.active {
  opacity: 1;
  transform: scale(1.1);
}

.stage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #64748b;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.pipeline-stage.active .stage-icon {
  border-color: #3b82f6;
  color: #3b82f6;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.stage-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  transition: left 0.5s ease;
}

.pipeline-stage.active .stage-icon::after {
  left: 100%;
}

.stage-progress {
  width: 40px;
  height: 4px;
  background: #334155;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.stage-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.8s ease;
}

.pipeline-stage.active .stage-progress::after {
  left: 0;
}

.stage-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.5s ease;
}

.pipeline-stage.active .stage-label {
  color: #3b82f6;
}

.pipeline-connector {
  width: 30px;
  height: 2px;
  background: #334155;
  position: relative;
  overflow: hidden;
}

.connector-flow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.5s ease;
}

.pipeline-connector.active .connector-flow {
  left: 0;
}

/* Loading Text Animation */
.loading-text-container {
  text-align: center;
  margin: 20px 0;
}

.loading-title {
  margin-bottom: 15px;
}

.loading-title .gradient-text {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease-in-out infinite;
}

.loading-title .title-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  margin-top: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loading-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.process-text {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
  min-width: 200px;
  text-align: left;
}

.loading-dots {
  display: flex;
  gap: 4px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: loadingDotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Progress Bar */
.main-progress-container {
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progressGradient 2s ease-in-out infinite;
}

.progress-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
  transform: translateX(-100%);
  animation: progressGlow 2s ease-in-out infinite;
}

.progress-percentage {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Container Stats */
.container-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.stat-item.active {
  opacity: 1;
  transform: scale(1.1);
}

.stat-item i {
  font-size: 24px;
  color: #64748b;
  transition: color 0.5s ease;
}

.stat-item.active i {
  color: #3b82f6;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #f8fafc;
  text-shadow: 0 0 10px rgba(248, 250, 252, 0.3);
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 20px;
  color: #334155;
  opacity: 0.3;
  animation: particleFloat 15s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  color: #f59e0b;
}

.particle-2 {
  top: 60%;
  left: 80%;
  animation-delay: 3s;
  color: #06b6d4;
}

.particle-3 {
  top: 30%;
  left: 70%;
  animation-delay: 6s;
  color: #8b5cf6;
}

.particle-4 {
  top: 80%;
  left: 20%;
  animation-delay: 9s;
  color: #3b82f6;
}

.particle-5 {
  top: 10%;
  left: 60%;
  animation-delay: 12s;
  color: #22c55e;
}

.particle-6 {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
  color: #ef4444;
}

/* Animations */
@keyframes cloudFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

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

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

@keyframes loadingDotBounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

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

@keyframes progressGlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.3;
  }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .devops-loader {
    padding: 20px;
  }

  .loader-container {
    padding: 20px 15px;
    gap: 25px;
    max-width: 100%;
  }

  .cloud-infrastructure {
    max-width: 280px;
    gap: 15px;
  }

  .cloud {
    font-size: 20px;
    gap: 8px;
  }

  .cloud-dots span {
    width: 6px;
    height: 6px;
  }

  .server-status {
    gap: 4px;
  }

  .status-dot {
    width: 8px;
    height: 8px;
  }

  .pipeline-container {
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    align-items: center;
  }

  .pipeline-stage {
    gap: 8px;
  }

  .stage-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .stage-progress {
    width: 30px;
    height: 3px;
  }

  .stage-label {
    font-size: 11px;
  }

  .pipeline-connector {
    width: 3px;
    height: 20px;
    transform: rotate(0deg);
  }

  .connector-flow {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
  }

  .loading-text-container {
    margin: 15px 0;
  }

  .loading-title .gradient-text {
    font-size: 24px;
  }

  .loading-title .title-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .loading-process {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .process-text {
    font-size: 14px;
    min-width: auto;
    text-align: center;
  }

  .loading-dots {
    justify-content: center;
  }

  .main-progress-container {
    max-width: 280px;
  }

  .progress-bar {
    height: 6px;
  }

  .progress-percentage {
    font-size: 16px;
    margin-top: 8px;
  }

  .container-stats {
    max-width: 280px;
    gap: 10px;
  }

  .stat-item {
    gap: 6px;
  }

  .stat-item i {
    font-size: 18px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 10px;
  }

  .particle {
    font-size: 14px;
  }

  /* Adjust particle positions for mobile */
  .particle-1 { top: 15%; left: 5%; }
  .particle-2 { top: 70%; left: 85%; }
  .particle-3 { top: 25%; left: 75%; }
  .particle-4 { top: 85%; left: 15%; }
  .particle-5 { top: 5%; left: 65%; }
  .particle-6 { top: 75%; left: 35%; }
}

@media (max-width: 480px) {
  .devops-loader {
    padding: 15px;
  }

  .loader-container {
    padding: 15px 10px;
    gap: 20px;
    max-width: 100%;
  }

  .cloud-infrastructure {
    max-width: 240px;
    gap: 10px;
  }

  .cloud {
    font-size: 18px;
    gap: 6px;
  }

  .cloud-dots span {
    width: 5px;
    height: 5px;
  }

  .status-dot {
    width: 6px;
    height: 6px;
  }

  .pipeline-container {
    max-width: 240px;
    gap: 10px;
  }

  .stage-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .stage-progress {
    width: 25px;
    height: 2px;
  }

  .stage-label {
    font-size: 10px;
  }

  .pipeline-connector {
    height: 15px;
  }

  .loading-title .gradient-text {
    font-size: 20px;
  }

  .loading-title .title-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .process-text {
    font-size: 13px;
  }

  .loading-dots span {
    width: 6px;
    height: 6px;
  }

  .main-progress-container {
    max-width: 240px;
  }

  .progress-bar {
    height: 5px;
  }

  .progress-percentage {
    font-size: 14px;
    margin-top: 6px;
  }

  .container-stats {
    max-width: 240px;
    gap: 8px;
  }

  .stat-item {
    gap: 4px;
  }

  .stat-item i {
    font-size: 16px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 9px;
  }

  .particle {
    font-size: 12px;
  }

  /* Further adjust particles for small screens */
  .particle-1 { top: 10%; left: 2%; }
  .particle-2 { top: 75%; left: 88%; }
  .particle-3 { top: 20%; left: 78%; }
  .particle-4 { top: 88%; left: 12%; }
  .particle-5 { top: 3%; left: 68%; }
  .particle-6 { top: 78%; left: 32%; }
}

/* Ultra-small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
  .loader-container {
    padding: 12px 8px;
    gap: 18px;
  }

  .cloud-infrastructure {
    max-width: 220px;
  }

  .cloud {
    font-size: 16px;
  }

  .pipeline-container {
    max-width: 220px;
  }

  .stage-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .loading-title .gradient-text {
    font-size: 18px;
  }

  .process-text {
    font-size: 12px;
  }

  .main-progress-container {
    max-width: 220px;
  }

  .container-stats {
    max-width: 220px;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .loader-container {
    gap: 15px;
    padding: 15px;
    max-height: 100vh;
    overflow-y: auto;
  }

  .cloud-infrastructure {
    margin-bottom: 10px;
  }

  .pipeline-container {
    flex-direction: row;
    max-width: 90vw;
    gap: 8px;
  }

  .pipeline-connector {
    width: 15px;
    height: 2px;
    transform: rotate(0deg);
  }

  .connector-flow {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
  }

  .loading-text-container {
    margin: 10px 0;
  }

  .main-progress-container {
    margin: 10px 0;
  }

  .container-stats {
    margin: 10px 0;
  }

  /* Adjust particles for landscape */
  .particle {
    font-size: 12px;
  }
}

/* Very small landscape screens */
@media (max-width: 480px) and (orientation: landscape) {
  .loader-container {
    gap: 12px;
    padding: 10px;
  }

  .loading-title .gradient-text {
    font-size: 16px;
  }

  .loading-title .title-subtitle {
    font-size: 10px;
  }

  .process-text {
    font-size: 11px;
  }

  .progress-percentage {
    font-size: 12px;
  }

  .stage-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .stage-label {
    font-size: 8px;
  }

  .cloud {
    font-size: 14px;
  }
}

/* Tablet responsive design */
@media (min-width: 769px) and (max-width: 1024px) {
  .loader-container {
    max-width: 500px;
    gap: 35px;
  }

  .cloud-infrastructure {
    max-width: 350px;
  }

  .pipeline-container {
    max-width: 450px;
  }

  .main-progress-container {
    max-width: 350px;
  }

  .container-stats {
    max-width: 350px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .devops-loader {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .loader-container * {
    -webkit-tap-highlight-color: transparent;
  }

  /* Slightly larger touch targets for better accessibility */
  .pipeline-stage {
    min-height: 44px;
    min-width: 44px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .progress-bar {
    border-radius: 6px;
  }

  .stage-icon {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
  }
}

/* Dark Mode Enhancements */
body.dark .devops-loader {
  background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
}

body.dark .stage-icon {
  background: linear-gradient(135deg, #000000, #1e293b);
  border-color: #334155;
}

body.dark .progress-bar {
  background: #000000;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .devops-loader * {
    animation-duration: 0.1s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1s !important;
  }
}

/* ===== END DEVOPS LOADER STYLES ===== */

/* Modern Color Palette */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #06b6d4;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
body.dark {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-home .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Utilities */
.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  border: none;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.shadow-dark {
  box-shadow: var(--shadow-medium);
}

/* Modern Sidebar */
.section-aside {
  width: 280px;
  background: var(--bg-secondary);
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px 30px;
  border-right: 1px solid var(--border-color);
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

/* ===== STUNNING ENHANCED LOGO DESIGN ===== */

.section-aside .logo {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  padding: 30px 0;
  overflow: visible;
}

/* Logo Container with Enhanced Background */
.section-aside .logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.15) 0%, 
    rgba(6, 182, 212, 0.1) 35%, 
    rgba(139, 92, 246, 0.08) 70%, 
    transparent 100%);
  border-radius: 50%;
  opacity: 0.6;
  animation: logoBackgroundPulse 4s ease-in-out infinite;
  z-index: 0;
}

/* Dynamic Floating Particles */
.section-aside .logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: 
    radial-gradient(2px 2px at 20px 30px, rgba(37, 99, 235, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(139, 92, 246, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(6, 182, 212, 0.3), transparent);
  animation: particleFloat 8s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Main Logo Text */
.section-aside .logo a {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  letter-spacing: -1.5px;
  z-index: 10;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    #6366f1 50%,
    #8b5cf6 75%,
    var(--primary-color) 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
  text-shadow: 
    0 0 30px rgba(37, 99, 235, 0.3),
    0 0 60px rgba(6, 182, 212, 0.2),
    0 0 90px rgba(139, 92, 246, 0.1);
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
}

/* Enhanced Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  25% {
    background-position: 100% 0%;
    filter: hue-rotate(90deg);
  }
  50% {
    background-position: 100% 100%;
    filter: hue-rotate(180deg);
  }
  75% {
    background-position: 0% 100%;
    filter: hue-rotate(270deg);
  }
  100% {
    background-position: 0% 50%;
    filter: hue-rotate(360deg);
  }
}

/* Logo Background Pulse Animation */
@keyframes logoBackgroundPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
}

/* Particle Float Animation */
@keyframes particleFloat {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 1;
  }
}

/* Spectacular Hover Effect */
.section-aside .logo a:hover {
  transform: scale(1.15) rotate(2deg);
  filter: drop-shadow(0 0 40px rgba(37, 99, 235, 0.6))
          drop-shadow(0 0 80px rgba(6, 182, 212, 0.4))
          drop-shadow(0 0 120px rgba(139, 92, 246, 0.3));
  text-shadow: 
    0 0 20px rgba(37, 99, 235, 0.8),
    0 0 40px rgba(6, 182, 212, 0.6),
    0 0 60px rgba(139, 92, 246, 0.4),
    0 0 80px rgba(37, 99, 235, 0.2);
}

/* Logo hover background effect */
.section-aside .logo:hover::before {
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.8;
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.3) 0%, 
    rgba(6, 182, 212, 0.2) 35%, 
    rgba(139, 92, 246, 0.15) 70%, 
    transparent 100%);
}

/* Enhanced First Letter - "D" */
.section-aside .logo a span {
  font-size: 48px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  margin-right: 3px;
  background: linear-gradient(45deg, 
    #3b82f6 0%,
    #8b5cf6 25%,
    #06b6d4 50%,
    #f59e0b 75%,
    #ef4444 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: letterGlow 4s ease-in-out infinite;
  text-shadow: 
    0 0 20px rgba(59, 130, 246, 0.8),
    0 0 40px rgba(139, 92, 246, 0.6),
    0 0 60px rgba(6, 182, 212, 0.4);
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
  z-index: 11;
}

/* First Letter Decorative Elements */
.section-aside .logo a span::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, 
    rgba(37, 99, 235, 0.1),
    rgba(139, 92, 246, 0.1),
    rgba(6, 182, 212, 0.1));
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-aside .logo a span:hover::before {
  opacity: 1;
}

/* Enhanced First Letter Hover */
.section-aside .logo a:hover span {
  transform: scale(1.3) rotate(-5deg);
  animation: letterBounce 0.6s ease;
}

/* Enhanced Letter Glow Animation */
@keyframes letterGlow {
  0% {
    background-position: 0% 50%;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1) saturate(1);
  }
  25% {
    background-position: 100% 0%;
    transform: scale(1.05) rotateY(5deg);
    filter: brightness(1.2) saturate(1.3);
  }
  50% {
    background-position: 100% 100%;
    transform: scale(1.1) rotateY(0deg);
    filter: brightness(1.4) saturate(1.5);
  }
  75% {
    background-position: 0% 100%;
    transform: scale(1.05) rotateY(-5deg);
    filter: brightness(1.2) saturate(1.3);
  }
  100% {
    background-position: 0% 50%;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1) saturate(1);
  }
}

/* Letter Bounce Animation */
@keyframes letterBounce {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-3deg); }
  50% { transform: scale(1.4) rotate(-8deg); }
  75% { transform: scale(1.2) rotate(-5deg); }
  100% { transform: scale(1.3) rotate(-5deg); }
}

/* Enhanced Professional Subtitle */
.section-aside .logo .logo-subtitle {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, 
    var(--primary-color), 
    var(--accent-color),
    #8b5cf6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: subtitleGlow 3s ease-in-out infinite;
  z-index: 5;
}

/* Decorative Top Line */
.section-aside .logo .logo-top-line {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%,
    var(--accent-color) 50%,
    #8b5cf6 100%);
  border-radius: 2px;
  opacity: 0.8;
  animation: lineExpand 3s ease-in-out infinite;
}

/* Decorative Bottom Line */
.section-aside .logo .logo-bottom-line {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--primary-color) 25%,
    var(--accent-color) 50%,
    #8b5cf6 75%,
    transparent 100%);
  border-radius: 1px;
  animation: bottomLineShimmer 4s ease-in-out infinite;
}

/* Subtitle Glow Animation */
@keyframes subtitleGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.8;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

/* Line Expand Animation */
@keyframes lineExpand {
  0%, 100% {
    width: 60px;
    opacity: 0.8;
  }
  50% {
    width: 80px;
    opacity: 1;
  }
}

/* Bottom Line Shimmer Animation */
@keyframes bottomLineShimmer {
  0% {
    background-position: -100% 0%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 0%;
    opacity: 1;
  }
  100% {
    background-position: 200% 0%;
    opacity: 0.6;
  }
}

/* Enhanced Logo Container Background */
.section-aside .logo {
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-aside .logo:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  box-shadow: 
    0 12px 48px rgba(37, 99, 235, 0.2),
    0 0 60px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Enhanced Dark Mode Styles */
body.dark .section-aside .logo {
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark .section-aside .logo:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(37, 99, 235, 0.2),
    0 0 120px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark .section-aside .logo::before {
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.2) 0%, 
    rgba(6, 182, 212, 0.15) 35%, 
    rgba(139, 92, 246, 0.1) 70%, 
    transparent 100%);
}

body.dark .section-aside .logo .logo-subtitle {
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}

body.dark .section-aside .logo a {
  text-shadow: 
    0 0 40px rgba(37, 99, 235, 0.4),
    0 0 80px rgba(6, 182, 212, 0.3),
    0 0 120px rgba(139, 92, 246, 0.2);
}

body.dark .section-aside .logo a span {
  text-shadow: 
    0 0 30px rgba(59, 130, 246, 1),
    0 0 60px rgba(139, 92, 246, 0.8),
    0 0 90px rgba(6, 182, 212, 0.6);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .section-aside .logo {
    padding: 25px 0;
    margin-bottom: 50px;
  }
  
  .section-aside .logo::before {
    width: 120px;
    height: 120px;
  }
  
  .section-aside .logo::after {
    width: 150px;
    height: 150px;
  }
  
  .section-aside .logo a {
    font-size: 30px;
    letter-spacing: -1px;
  }
  
  .section-aside .logo a span {
    font-size: 40px;
    margin-right: 2px;
  }
  
  .section-aside .logo .logo-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    bottom: -30px;
  }
  
  .section-aside .logo .logo-top-line {
    width: 50px;
    height: 3px;
    top: -12px;
  }
  
  .section-aside .logo .logo-bottom-line {
    width: 60px;
    bottom: -45px;
  }
  
  .section-aside .logo .logo-badge {
    font-size: 8px;
    padding: 4px 8px;
    top: -2px;
    right: -12px;
  }
  
  /* Reduced animations for better mobile performance */
  .section-aside .logo a:hover {
    transform: scale(1.08) rotate(1deg);
  }
  
  .section-aside .logo a:hover span {
    transform: scale(1.2) rotate(-3deg);
  }
}

@media (max-width: 480px) {
  .section-aside .logo {
    padding: 20px 0;
    margin-bottom: 40px;
  }
  
  .section-aside .logo a {
    font-size: 26px;
  }
  
  .section-aside .logo a span {
    font-size: 36px;
  }
  
  .section-aside .logo .logo-subtitle {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  
  .section-aside .logo .logo-badge {
    font-size: 7px;
    padding: 3px 6px;
  }
}

/* Enhanced Professional Logo Badge */
.section-aside .logo .logo-badge {
  position: absolute;
  top: 0px;
  right: -15px;
  background: linear-gradient(135deg, 
    #10b981 0%,
    #059669 50%,
    #047857 100%);
  color: white;
  font-size: 9px;
  padding: 6px 10px;
  border-radius: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  animation: badgePulse 3s ease-in-out infinite;
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.4),
    0 0 20px rgba(5, 150, 105, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 12;
  transition: all 0.4s ease;
}

.section-aside .logo .logo-badge::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.6),
    rgba(5, 150, 105, 0.4));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-aside .logo:hover .logo-badge {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 
    0 6px 20px rgba(16, 185, 129, 0.6),
    0 0 30px rgba(5, 150, 105, 0.4);
}

.section-aside .logo:hover .logo-badge::before {
  opacity: 1;
}

/* Enhanced Badge Pulse Animation */
@keyframes badgePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 
      0 4px 12px rgba(16, 185, 129, 0.4),
      0 0 20px rgba(5, 150, 105, 0.3);
  }
  50% {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 
      0 6px 16px rgba(16, 185, 129, 0.6),
      0 0 30px rgba(5, 150, 105, 0.5);
  }
}

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

/* ===== LOGO PERFORMANCE & ACCESSIBILITY ENHANCEMENTS ===== */

/* Hardware acceleration for smooth animations */
.section-aside .logo a,
.section-aside .logo a span,
.section-aside .logo::before,
.section-aside .logo::after,
.section-aside .logo .logo-badge {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .section-aside .logo a,
  .section-aside .logo a span,
  .section-aside .logo::before,
  .section-aside .logo::after,
  .section-aside .logo .logo-badge,
  .section-aside .logo .logo-top-line,
  .section-aside .logo .logo-bottom-line,
  .section-aside .logo .logo-subtitle {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus styles for accessibility */
.section-aside .logo a:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Logo fade-in animation on page load */
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-aside .logo {
  animation: logoFadeIn 1s ease-out;
}

.section-aside .aside-nav-toggler {
  height: 40px;
  width: 45px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  position: fixed;
  left: 300px;
  top: 20px;
  border-radius: 8px;
  background: var(--bg-primary);
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.section-aside .aside-nav-toggler span {
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  display: inline-block;
  position: relative;
}

.section-aside .aside-nav-toggler span::before {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  position: absolute;
  top: -6px;
  left: 0;
}

.section-aside .aside-nav-toggler span::after {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  position: absolute;
  top: 6px;
  left: 0;
}

.section-aside .aside-nav {
  list-style: none;
}

.section-aside .aside-nav li {
  margin-bottom: 8px;
}

.section-aside .aside-nav li a {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
}

.section-aside .aside-nav li a:hover,
.section-aside .aside-nav li a.active {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.1);
}

.section-aside .aside-nav li a i {
  margin-right: 15px;
  font-size: 18px;
}

/* Main Content Area */
.section-main {
  margin-left: 280px;
  transition: var(--transition);
}

.section-home {
  background: var(--bg-primary);
  min-height: auto;
  padding: 40px 40px;
  opacity: 1;
  position: relative;
  overflow-y: auto;
  transition: var(--transition);
  display: block; /* Ensure all sections are visible */
}

.section-home.active {
  z-index: 2;
  opacity: 1;
  animation: slideIn 0.5s ease;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

/* Home Section */
.home {
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.home .home-info {
  flex: 0 0 60%; /* Take 60% width for content */
  max-width: 60%;
  text-align: left; /* Left align for better reading */
  position: relative;
  z-index: 2;
  padding: 0 30px 0 0;
}

.home .home-visual {
  flex: 0 0 40%; /* Take 40% width for tech showcase */
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Enhanced floating icons with better positioning */
.floating-icon {
  position: absolute;
  animation: enhancedFloat 12s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  font-size: 20px;
  opacity: 0.5;
  z-index: 1;
  pointer-events: auto;
}

.floating-icon-1 {
  top: 10%;
  left: 5%;
  color: #ff9500;
  animation-delay: 0s;
  background: rgba(255, 149, 0, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 149, 0, 0.15);
}

.floating-icon-2 {
  top: 20%;
  right: 15%;
  color: #0db7ed;
  animation-delay: 2s;
  background: rgba(13, 183, 237, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(13, 183, 237, 0.15);
}

.floating-icon-3 {
  bottom: 30%;
  left: 15%;
  color: var(--primary-color);
  animation-delay: 4s;
  background: rgba(37, 99, 235, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.floating-icon-4 {
  bottom: 10%;
  right: 5%;
  color: #3776ab;
  animation-delay: 6s;
  background: rgba(55, 118, 171, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(55, 118, 171, 0.15);
}

.floating-icon-5 {
  top: 60%;
  left: 3%;
  color: #f7df1e;
  animation-delay: 1s;
  background: rgba(247, 223, 30, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(247, 223, 30, 0.15);
}

.floating-icon-6 {
  top: 40%;
  right: 8%;
  color: #61dafb;
  animation-delay: 3s;
  background: rgba(97, 218, 251, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(97, 218, 251, 0.15);
}

.floating-icon-7 {
  bottom: 50%;
  right: 25%;
  color: #e10098;
  animation-delay: 5s;
  background: rgba(225, 0, 152, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(225, 0, 152, 0.15);
}

.floating-icon-8 {
  top: 75%;
  left: 25%;
  color: #326ce5;
  animation-delay: 7s;
  background: rgba(50, 108, 229, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(50, 108, 229, 0.15);
}

/* Enhanced floating animation */
@keyframes enhancedFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg) scale(0.9);
  }
  75% {
    transform: translateY(-25px) rotate(8deg) scale(1.15);
  }
}

.floating-icon:hover {
  transform: scale(1.8) rotate(15deg) !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  z-index: 10;
  opacity: 1;
  pointer-events: all;
}

/* Enhanced hero content animations */
.home .home-info h3.hello {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.home .home-info h1.my-profession {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.home .home-info .hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.home .home-info .hero-stats {
  animation: fadeInUp 0.8s ease 0.8s both;
  margin-bottom: 50px;
}

.home .home-info .hero-actions {
  animation: fadeInUp 0.8s ease 1s both;
  margin-bottom: 40px;
}

.home .home-info .social-links {
  animation: fadeInUp 0.8s ease 1.2s both;
}

/* Animated background elements */
.home::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  animation: backgroundPulse 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes backgroundPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.5;
  }
}

/* Particle effect */
.home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(37, 99, 235, 0.15), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(37, 99, 235, 0.25), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 10% 80%, rgba(37, 99, 235, 0.15), transparent);
  background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px;
  animation: particleMove 20s linear infinite;
  z-index: 0;
}

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

.home .home-info h3.hello .name {
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
}

.home .home-info h3.my-profession {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.home .home-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.home .home-img {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
  position: relative;
}

.home .home-img img {
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
  transition: var(--transition);
}

.home .home-img img:hover {
  transform: scale(1.02);
}

/* Section Titles */
.section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: "";
  height: 4px;
  width: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* About Section */
.about .about-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .about-text {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.about .about-content .about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.about .about-content .about-text h3 span {
  color: var(--primary-color);
}

.about .about-content .about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.about .about-content .personal-info {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 40px;
}

.about .about-content .personal-info .info-item {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 16px;
}

.about .about-content .personal-info .info-item p {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.about .about-content .personal-info .info-item p span {
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 8px;
}

.about .about-content .personal-info .info-item p span a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.about .about-content .personal-info .info-item p span a:hover {
  color: var(--primary-dark);
}

/* Skills */
.about .about-content .skills {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 40px;
}

.about .about-content .skills .skill-item {
  margin-bottom: 30px;
}

.about .about-content .skills .skill-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about .about-content .skills .skill-item .progress {
  background-color: var(--bg-tertiary);
  height: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.about .about-content .skills .skill-item .progress .progress-in {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  transition: width 1s ease;
}

.about .about-content .skills .skill-item .skill-percent {
  position: absolute;
  right: 0;
  top: -35px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
}

/* Education & Timeline */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ===== DEVOPS LOADER STYLES ===== */
.devops-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.devops-loader.fade-out {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
}

/* Cloud Infrastructure Animation */
.cloud-infrastructure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.cloud {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 32px;
  animation: cloudFloat 3s ease-in-out infinite;
}

.cloud-1 {
  animation-delay: 0s;
  color: #3b82f6;
}

.cloud-2 {
  animation-delay: 1s;
  color: #06b6d4;
}

.cloud-3 {
  animation-delay: 2s;
  color: #8b5cf6;
}

.cloud-dots {
  display: flex;
  gap: 4px;
}

.cloud-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: cloudDotPulse 1.5s ease-in-out infinite;
}

.cloud-dots span:nth-child(1) { animation-delay: 0s; }
.cloud-dots span:nth-child(2) { animation-delay: 0.3s; }
.cloud-dots span:nth-child(3) { animation-delay: 0.6s; }

.server-status {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #64748b;
  opacity: 0.4;
}

.status-dot.active {
  background: #22c55e;
  opacity: 1;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.loading {
  background: #f59e0b;
  animation: statusLoading 1s ease-in-out infinite;
}

/* CI/CD Pipeline Animation */
.pipeline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pipeline-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  transition: all 0.5s ease;
}

.pipeline-stage.active {
  opacity: 1;
  transform: scale(1.1);
}

.stage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #64748b;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.pipeline-stage.active .stage-icon {
  border-color: #3b82f6;
  color: #3b82f6;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.stage-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  transition: left 0.5s ease;
}

.pipeline-stage.active .stage-icon::after {
  left: 100%;
}

.stage-progress {
  width: 40px;
  height: 4px;
  background: #334155;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.stage-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.8s ease;
}

.pipeline-stage.active .stage-progress::after {
  left: 0;
}

.stage-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.5s ease;
}

.pipeline-stage.active .stage-label {
  color: #3b82f6;
}

.pipeline-connector {
  width: 30px;
  height: 2px;
  background: #334155;
  position: relative;
  overflow: hidden;
}

.connector-flow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: left 0.5s ease;
}

.pipeline-connector.active .connector-flow {
  left: 0;
}

/* Loading Text Animation */
.loading-text-container {
  text-align: center;
  margin: 20px 0;
}

.loading-title {
  margin-bottom: 15px;
}

.loading-title .gradient-text {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease-in-out infinite;
}

.loading-title .title-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  margin-top: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loading-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.process-text {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
  min-width: 200px;
  text-align: left;
}

.loading-dots {
  display: flex;
  gap: 4px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: loadingDotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Progress Bar */
.main-progress-container {
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progressGradient 2s ease-in-out infinite;
}

.progress-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
  transform: translateX(-100%);
  animation: progressGlow 2s ease-in-out infinite;
}

.progress-percentage {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Container Stats */
.container-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.stat-item.active {
  opacity: 1;
  transform: scale(1.1);
}

.stat-item i {
  font-size: 24px;
  color: #64748b;
  transition: color 0.5s ease;
}

.stat-item.active i {
  color: #3b82f6;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #f8fafc;
  text-shadow: 0 0 10px rgba(248, 250, 252, 0.3);
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 20px;
  color: #334155;
  opacity: 0.3;
  animation: particleFloat 15s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  color: #f59e0b;
}

.particle-2 {
  top: 60%;
  left: 80%;
  animation-delay: 3s;
  color: #06b6d4;
}

.particle-3 {
  top: 30%;
  left: 70%;
  animation-delay: 6s;
  color: #8b5cf6;
}

.particle-4 {
  top: 80%;
  left: 20%;
  animation-delay: 9s;
  color: #3b82f6;
}

.particle-5 {
  top: 10%;
  left: 60%;
  animation-delay: 12s;
  color: #22c55e;
}

.particle-6 {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
  color: #ef4444;
}

/* Animations */
@keyframes cloudFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

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

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

@keyframes loadingDotBounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

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

@keyframes progressGlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.3;
  }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .devops-loader {
    padding: 20px;
  }

  .loader-container {
    padding: 20px 15px;
    gap: 25px;
    max-width: 100%;
  }

  .cloud-infrastructure {
    max-width: 280px;
    gap: 15px;
  }

  .cloud {
    font-size: 20px;
    gap: 8px;
  }

  .cloud-dots span {
    width: 6px;
    height: 6px;
  }

  .server-status {
    gap: 4px;
  }

  .status-dot {
    width: 8px;
    height: 8px;
  }

  .pipeline-container {
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    align-items: center;
  }

  .pipeline-stage {
    gap: 8px;
  }

  .stage-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .stage-progress {
    width: 30px;
    height: 3px;
  }

  .stage-label {
    font-size: 11px;
  }

  .pipeline-connector {
    width: 3px;
    height: 20px;
    transform: rotate(0deg);
  }

  .connector-flow {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
  }

  .loading-text-container {
    margin: 15px 0;
  }

  .loading-title .gradient-text {
    font-size: 24px;
  }

  .loading-title .title-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .loading-process {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .process-text {
    font-size: 14px;
    min-width: auto;
    text-align: center;
  }

  .loading-dots {
    justify-content: center;
  }

  .main-progress-container {
    max-width: 280px;
  }

  .progress-bar {
    height: 6px;
  }

  .progress-percentage {
    font-size: 16px;
    margin-top: 8px;
  }

  .container-stats {
    max-width: 280px;
    gap: 10px;
  }

  .stat-item {
    gap: 6px;
  }

  .stat-item i {
    font-size: 18px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 10px;
  }

  .particle {
    font-size: 14px;
  }

  /* Adjust particle positions for mobile */
  .particle-1 { top: 15%; left: 5%; }
  .particle-2 { top: 70%; left: 85%; }
  .particle-3 { top: 25%; left: 75%; }
  .particle-4 { top: 85%; left: 15%; }
  .particle-5 { top: 5%; left: 65%; }
  .particle-6 { top: 75%; left: 35%; }
}

@media (max-width: 480px) {
  .devops-loader {
    padding: 15px;
  }

  .loader-container {
    padding: 15px 10px;
    gap: 20px;
    max-width: 100%;
  }

  .cloud-infrastructure {
    max-width: 240px;
    gap: 10px;
  }

  .cloud {
    font-size: 18px;
    gap: 6px;
  }

  .cloud-dots span {
    width: 5px;
    height: 5px;
  }

  .status-dot {
    width: 6px;
    height: 6px;
  }

  .pipeline-container {
    max-width: 240px;
    gap: 10px;
  }

  .stage-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .stage-progress {
    width: 25px;
    height: 2px;
  }

  .stage-label {
    font-size: 10px;
  }

  .pipeline-connector {
    height: 15px;
  }

  .loading-title .gradient-text {
    font-size: 20px;
  }

  .loading-title .title-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .process-text {
    font-size: 13px;
  }

  .loading-dots span {
    width: 6px;
    height: 6px;
  }

  .main-progress-container {
    max-width: 240px;
  }

  .progress-bar {
    height: 5px;
  }

  .progress-percentage {
    font-size: 14px;
    margin-top: 6px;
  }

  .container-stats {
    max-width: 240px;
    gap: 8px;
  }

  .stat-item {
    gap: 4px;
  }

  .stat-item i {
    font-size: 16px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 9px;
  }

  .particle {
    font-size: 12px;
  }

  /* Further adjust particles for small screens */
  .particle-1 { top: 10%; left: 2%; }
  .particle-2 { top: 75%; left: 88%; }
  .particle-3 { top: 20%; left: 78%; }
  .particle-4 { top: 88%; left: 12%; }
  .particle-5 { top: 3%; left: 68%; }
  .particle-6 { top: 78%; left: 32%; }
}

/* Ultra-small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
  .loader-container {
    padding: 12px 8px;
    gap: 18px;
  }

  .cloud-infrastructure {
    max-width: 220px;
  }

  .cloud {
    font-size: 16px;
  }

  .pipeline-container {
    max-width: 220px;
  }

  .stage-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .loading-title .gradient-text {
    font-size: 18px;
  }

  .process-text {
    font-size: 12px;
  }

  .main-progress-container {
    max-width: 220px;
  }

  .container-stats {
    max-width: 220px;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .loader-container {
    gap: 15px;
    padding: 15px;
    max-height: 100vh;
    overflow-y: auto;
  }

  .cloud-infrastructure {
    margin-bottom: 10px;
  }

  .pipeline-container {
    flex-direction: row;
    max-width: 90vw;
    gap: 8px;
  }

  .pipeline-connector {
    width: 15px;
    height: 2px;
    transform: rotate(0deg);
  }

  .connector-flow {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
  }

  .loading-text-container {
    margin: 10px 0;
  }

  .main-progress-container {
    margin: 10px 0;
  }

  .container-stats {
    margin: 10px 0;
  }

  /* Adjust particles for landscape */
  .particle {
    font-size: 12px;
  }
}

/* Very small landscape screens */
@media (max-width: 480px) and (orientation: landscape) {
  .loader-container {
    gap: 12px;
    padding: 10px;
  }

  .loading-title .gradient-text {
    font-size: 16px;
  }

  .loading-title .title-subtitle {
    font-size: 10px;
  }

  .process-text {
    font-size: 11px;
  }

  .progress-percentage {
    font-size: 12px;
  }

  .stage-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .stage-label {
    font-size: 8px;
  }

  .cloud {
    font-size: 14px;
  }
}

/* Tablet responsive design */
@media (min-width: 769px) and (max-width: 1024px) {
  .loader-container {
    max-width: 500px;
    gap: 35px;
  }

  .cloud-infrastructure {
    max-width: 350px;
  }

  .pipeline-container {
    max-width: 450px;
  }

  .main-progress-container {
    max-width: 350px;
  }

  .container-stats {
    max-width: 350px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .devops-loader {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .loader-container * {
    -webkit-tap-highlight-color: transparent;
  }

  /* Slightly larger touch targets for better accessibility */
  .pipeline-stage {
    min-height: 44px;
    min-width: 44px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .progress-bar {
    border-radius: 6px;
  }

  .stage-icon {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
  }
}

/* Dark Mode Enhancements */
body.dark .devops-loader {
  background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
}

body.dark .stage-icon {
  background: linear-gradient(135deg, #000000, #1e293b);
  border-color: #334155;
}

body.dark .progress-bar {
  background: #000000;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .devops-loader * {
    animation-duration: 0.1s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1s !important;
  }
}

/* ===== END DEVOPS LOADER STYLES ===== */

/* Modern Color Palette */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #06b6d4;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
body.dark {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-home .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Utilities */
.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  border: none;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.shadow-dark {
  box-shadow: var(--shadow-medium);
}

/* Modern Sidebar */
.section-aside {
  width: 280px;
  background: var(--bg-secondary);
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px 30px;
  border-right: 1px solid var(--border-color);
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

/* ===== STUNNING ENHANCED LOGO DESIGN ===== */

.section-aside .logo {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  padding: 30px 0;
  overflow: visible;
}

/* Logo Container with Enhanced Background */
.section-aside .logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.15) 0%, 
    rgba(6, 182, 212, 0.1) 35%, 
    rgba(139, 92, 246, 0.08) 70%, 
    transparent 100%);
  border-radius: 50%;
  opacity: 0.6;
  animation: logoBackgroundPulse 4s ease-in-out infinite;
  z-index: 0;
}

/* Dynamic Floating Particles */
.section-aside .logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: 
    radial-gradient(2px 2px at 20px 30px, rgba(37, 99, 235, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(139, 92, 246, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(6, 182, 212, 0.3), transparent);
  animation: particleFloat 8s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Main Logo Text */
.section-aside .logo a {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  letter-spacing: -1.5px;
  z-index: 10;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    #6366f1 50%,
    #8b5cf6 75%,
    var(--primary-color) 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
  text-shadow: 
    0 0 30px rgba(37, 99, 235, 0.3),
    0 0 60px rgba(6, 182, 212, 0.2),
    0 0 90px rgba(139, 92, 246, 0.1);
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
}

/* Enhanced Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  25% {
    background-position: 100% 0%;
    filter: hue-rotate(90deg);
  }
  50% {
    background-position: 100% 100%;
    filter: hue-rotate(180deg);
  }
  75% {
    background-position: 0% 100%;
    filter: hue-rotate(270deg);
  }
  100% {
    background-position: 0% 50%;
    filter: hue-rotate(360deg);
  }
}

/* Logo Background Pulse Animation */
@keyframes logoBackgroundPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
}

/* Particle Float Animation */
@keyframes particleFloat {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 1;
  }
}

/* Spectacular Hover Effect */
.section-aside .logo a:hover {
  transform: scale(1.15) rotate(2deg);
  filter: drop-shadow(0 0 40px rgba(37, 99, 235, 0.6))
          drop-shadow(0 0 80px rgba(6, 182, 212, 0.4))
          drop-shadow(0 0 120px rgba(139, 92, 246, 0.3));
  text-shadow: 
    0 0 20px rgba(37, 99, 235, 0.8),
    0 0 40px rgba(6, 182, 212, 0.6),
    0 0 60px rgba(139, 92, 246, 0.4),
    0 0 80px rgba(37, 99, 235, 0.2);
}

/* Logo hover background effect */
.section-aside .logo:hover::before {
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.8;
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.3) 0%, 
    rgba(6, 182, 212, 0.2) 35%, 
    rgba(139, 92, 246, 0.15) 70%, 
    transparent 100%);
}

/* Enhanced First Letter - "D" */
.section-aside .logo a span {
  font-size: 48px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  margin-right: 3px;
  background: linear-gradient(45deg, 
    #3b82f6 0%,
    #8b5cf6 25%,
    #06b6d4 50%,
    #f59e0b 75%,
    #ef4444 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: letterGlow 4s ease-in-out infinite;
  text-shadow: 
    0 0 20px rgba(59, 130, 246, 0.8),
    0 0 40px rgba(139, 92, 246, 0.6),
    0 0 60px rgba(6, 182, 212, 0.4);
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
  z-index: 11;
}

/* First Letter Decorative Elements */
.section-aside .logo a span::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, 
    rgba(37, 99, 235, 0.1),
    rgba(139, 92, 246, 0.1),
    rgba(6, 182, 212, 0.1));
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-aside .logo a span:hover::before {
  opacity: 1;
}

/* Enhanced First Letter Hover */
.section-aside .logo a:hover span {
  transform: scale(1.3) rotate(-5deg);
  animation: letterBounce 0.6s ease;
}

/* Enhanced Letter Glow Animation */
@keyframes letterGlow {
  0% {
    background-position: 0% 50%;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1) saturate(1);
  }
  25% {
    background-position: 100% 0%;
    transform: scale(1.05) rotateY(5deg);
    filter: brightness(1.2) saturate(1.3);
  }
  50% {
    background-position: 100% 100%;
    transform: scale(1.1) rotateY(0deg);
    filter: brightness(1.4) saturate(1.5);
  }
  75% {
    background-position: 0% 100%;
    transform: scale(1.05) rotateY(-5deg);
    filter: brightness(1.2) saturate(1.3);
  }
  100% {
    background-position: 0% 50%;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1) saturate(1);
  }
}

/* Letter Bounce Animation */
@keyframes letterBounce {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-3deg); }
  50% { transform: scale(1.4) rotate(-8deg); }
  75% { transform: scale(1.2) rotate(-5deg); }
  100% { transform: scale(1.3) rotate(-5deg); }
}

/* Enhanced Professional Subtitle */
.section-aside .logo .logo-subtitle {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, 
    var(--primary-color), 
    var(--accent-color),
    #8b5cf6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: subtitleGlow 3s ease-in-out infinite;
  z-index: 5;
}

/* Decorative Top Line */
.section-aside .logo .logo-top-line {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%,
    var(--accent-color) 50%,
    #8b5cf6 100%);
  border-radius: 2px;
  opacity: 0.8;
  animation: lineExpand 3s ease-in-out infinite;
}

/* Decorative Bottom Line */
.section-aside .logo .logo-bottom-line {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--primary-color) 25%,
    var(--accent-color) 50%,
    #8b5cf6 75%,
    transparent 100%);
  border-radius: 1px;
  animation: bottomLineShimmer 4s ease-in-out infinite;
}

/* Subtitle Glow Animation */
@keyframes subtitleGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.8;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

/* Line Expand Animation */
@keyframes lineExpand {
  0%, 100% {
    width: 60px;
    opacity: 0.8;
  }
  50% {
    width: 80px;
    opacity: 1;
  }
}

/* Bottom Line Shimmer Animation */
@keyframes bottomLineShimmer {
  0% {
    background-position: -100% 0%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 0%;
    opacity: 1;
  }
  100% {
    background-position: 200% 0%;
    opacity: 0.6;
  }
}

/* Enhanced Logo Container Background */
.section-aside .logo {
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-aside .logo:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  box-shadow: 
    0 12px 48px rgba(37, 99, 235, 0.2),
    0 0 60px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Enhanced Dark Mode Styles */
body.dark .section-aside .logo {
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark .section-aside .logo:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: 
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
    radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(37, 99, 235, 0.2),
    0 0 120px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark .section-aside .logo::before {
  background: radial-gradient(circle at 30% 30%, 
    rgba(37, 99, 235, 0.2) 0%, 
    rgba(6, 182, 212, 0.15) 35%, 
    rgba(139, 92, 246, 0.1) 70%, 
    transparent 100%);
}

body.dark .section-aside .logo .logo-subtitle {
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}

body.dark .section-aside .logo a {
  text-shadow: 
    0 0 40px rgba(37, 99, 235, 0.4),
    0 0 80px rgba(6, 182, 212, 0.3),
    0 0 120px rgba(139, 92, 246, 0.2);
}

body.dark .section-aside .logo a span {
  text-shadow: 
    0 0 30px rgba(59, 130, 246, 1),
    0 0 60px rgba(139, 92, 246, 0.8),
    0 0 90px rgba(6, 182, 212, 0.6);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .section-aside .logo {
    padding: 25px 0;
    margin-bottom: 50px;
  }
  
  .section-aside .logo::before {
    width: 120px;
    height: 120px;
  }
  
  .section-aside .logo::after {
    width: 150px;
    height: 150px;
  }
  
  .section-aside .logo a {
    font-size: 30px;
    letter-spacing: -1px;
  }
  
  .section-aside .logo a span {
    font-size: 40px;
    margin-right: 2px;
  }
  
  .section-aside .logo .logo-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    bottom: -30px;
  }
  
  .section-aside .logo .logo-top-line {
    width: 50px;
    height: 3px;
    top: -12px;
  }
  
  .section-aside .logo .logo-bottom-line {
    width: 60px;
    bottom: -45px;
  }
  
  .section-aside .logo .logo-badge {
    font-size: 8px;
    padding: 4px 8px;
    top: -2px;
    right: -12px;
  }
  
  /* Reduced animations for better mobile performance */
  .section-aside .logo a:hover {
    transform: scale(1.08) rotate(1deg);
  }
  
  .section-aside .logo a:hover span {
    transform: scale(1.2) rotate(-3deg);
  }
}

@media (max-width: 480px) {
  .section-aside .logo {
    padding: 20px 0;
    margin-bottom: 40px;
  }
  
  .section-aside .logo a {
    font-size: 26px;
  }
  
  .section-aside .logo a span {
    font-size: 36px;
  }
  
  .section-aside .logo .logo-subtitle {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  
  .section-aside .logo .logo-badge {
    font-size: 7px;
    padding: 3px 6px;
  }
}

/* Enhanced Professional Logo Badge */
.section-aside .logo .logo-badge {
  position: absolute;
  top: 0px;
  right: -15px;
  background: linear-gradient(135deg, 
    #10b981 0%,
    #059669 50%,
    #047857 100%);
  color: white;
  font-size: 9px;
  padding: 6px 10px;
  border-radius: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  animation: badgePulse 3s ease-in-out infinite;
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.4),
    0 0 20px rgba(5, 150, 105, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 12;
  transition: all 0.4s ease;
}

.section-aside .logo .logo-badge::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.6),
    rgba(5, 150, 105, 0.4));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-aside .logo:hover .logo-badge {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 
    0 6px 20px rgba(16, 185, 129, 0.6),
    0 0 30px rgba(5, 150, 105, 0.4);
}

.section-aside .logo:hover .logo-badge::before {
  opacity: 1;
}

/* Enhanced Badge Pulse Animation */
@keyframes badgePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 
      0 4px 12px rgba(16, 185, 129, 0.4),
      0 0 20px rgba(5, 150, 105, 0.3);
  }
  50% {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 
      0 6px 16px rgba(16, 185, 129, 0.6),
      0 0 30px rgba(5, 150, 105, 0.5);
  }
}

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

/* ===== LOGO PERFORMANCE & ACCESSIBILITY ENHANCEMENTS ===== */

/* Hardware acceleration for smooth animations */
.section-aside .logo a,
.section-aside .logo a span,
.section-aside .logo::before,
.section-aside .logo::after,
.section-aside .logo .logo-badge {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .section-aside .logo a,
  .section-aside .logo a span,
  .section-aside .logo::before,
  .section-aside .logo::after,
  .section-aside .logo .logo-badge,
  .section-aside .logo .logo-top-line,
  .section-aside .logo .logo-bottom-line,
  .section-aside .logo .logo-subtitle {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus styles for accessibility */
.section-aside .logo a:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Logo fade-in animation on page load */
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-aside .logo {
  animation: logoFadeIn 1s ease-out;
}

.section-aside .aside-nav-toggler {
  height: 40px;
  width: 45px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  position: fixed;
  left: 300px;
  top: 20px;
  border-radius: 8px;
  background: var(--bg-primary);
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.section-aside .aside-nav-toggler span {
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  display: inline-block;
  position: relative;
}

.section-aside .aside-nav-toggler span::before {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  position: absolute;
  top: -6px;
  left: 0;
}

.section-aside .aside-nav-toggler span::after {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--text-primary);
  position: absolute;
  top: 6px;
  left: 0;
}

.section-aside .aside-nav {
  list-style: none;
}

.section-aside .aside-nav li {
  margin-bottom: 8px;
}

.section-aside .aside-nav li a {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
}

.section-aside .aside-nav li a:hover,
.section-aside .aside-nav li a.active {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.1);
}

.section-aside .aside-nav li a i {
  margin-right: 15px;
  font-size: 18px;
}

/* Main Content Area */
.section-main {
  margin-left: 280px;
  transition: var(--transition);
}

.section-home {
  background: var(--bg-primary);
  min-height: auto;
  padding: 40px 40px;
  opacity: 1;
  position: relative;
  overflow-y: auto;
  transition: var(--transition);
  display: block; /* Ensure all sections are visible */
}

.section-home.active {
  z-index: 2;
  opacity: 1;
  animation: slideIn 0.5s ease;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

/* Home Section */
.home {
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.home .home-info {
  flex: 0 0 60%; /* Take 60% width for content */
  max-width: 60%;
  text-align: left; /* Left align for better reading */
  position: relative;
  z-index: 2;
  padding: 0 30px 0 0;
}

.home .home-visual {
  flex: 0 0 40%; /* Take 40% width for tech showcase */
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Enhanced floating icons with better positioning */
.floating-icon {
  position: absolute;
  animation: enhancedFloat 12s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  font-size: 20px;
  opacity: 0.5;
  z-index: 1;
  pointer-events: auto;
}

.floating-icon-1 {
  top: 10%;
  left: 5%;
  color: #ff9500;
  animation-delay: 0s;
  background: rgba(255, 149, 0, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 149, 0, 0.15);
}

.floating-icon-2 {
  top: 20%;
  right: 15%;
  color: #0db7ed;
  animation-delay: 2s;
  background: rgba(13, 183, 237, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(13, 183, 237, 0.15);
}

.floating-icon-3 {
  bottom: 30%;
  left: 15%;
  color: var(--primary-color);
  animation-delay: 4s;
  background: rgba(37, 99, 235, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.floating-icon-4 {
  bottom: 10%;
  right: 5%;
  color: #3776ab;
  animation-delay: 6s;
  background: rgba(55, 118, 171, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(55, 118, 171, 0.15);
}

.floating-icon-5 {
  top: 60%;
  left: 3%;
  color: #f7df1e;
  animation-delay: 1s;
  background: rgba(247, 223, 30, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(247, 223, 30, 0.15);
}

.floating-icon-6 {
  top: 40%;
  right: 8%;
  color: #61dafb;
  animation-delay: 3s;
  background: rgba(97, 218, 251, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(97, 218, 251, 0.15);
}

.floating-icon-7 {
  bottom: 50%;
  right: 25%;
  color: #e10098;
  animation-delay: 5s;
  background: rgba(225, 0, 152, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(225, 0, 152, 0.15);
}

.floating-icon-8 {
  top: 75%;
  left: 25%;
  color: #326ce5;
  animation-delay: 7s;
  background: rgba(50, 108, 229, 0.08);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(50, 108, 229, 0.15);
}

/* Enhanced floating animation */
@keyframes enhancedFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg) scale(0.9);
  }
  75% {
    transform: translateY(-25px) rotate(8deg) scale(1.15);
  }
}

.floating-icon:hover {
  transform: scale(1.8) rotate(15deg) !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  z-index: 10;
  opacity: 1;
  pointer-events: all;
}

/* Enhanced hero content animations */
.home .home-info h3.hello {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.home .home-info h1.my-profession {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.home .home-info .hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.home .home-info .hero-stats {
  animation: fadeInUp 0.8s ease 0.8s both;
  margin-bottom: 50px;
}

.home .home-info .hero-actions {
  animation: fadeInUp 0.8s ease 1s both;
  margin-bottom: 40px;
}

.home .home-info .social-links {
  animation: fadeInUp 0.8s ease 1.2s both;
}

/* Animated background elements */
.home::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  animation: backgroundPulse 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes backgroundPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.5;
  }
}

/* Particle effect */
.home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(37, 99, 235, 0.15), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(37, 99, 235, 0.25), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(2px 2px at 10% 80%, rgba(37, 99, 235, 0.15), transparent);
  background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px;
  animation: particleMove 20s linear infinite;
  z-index: 0;
}

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

.home .home-info h3.hello .name {
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
}

.home .home-info h3.my-profession {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.home .home-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.home .home-img {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
  position: relative;
}

.home .home-img img {
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
  transition: var(--transition);
}

.home .home-img img:hover {
  transform: scale(1.02);
}

/* Section Titles */
.section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: "";
  height: 4px;
  width: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* About Section */
.about .about-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .about-text {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.about .about-content .about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.about .about-content .about-text h3 span {
  color: var(--primary-color);
}

.about .about-content .about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.about .about-content .personal-info {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 40px;
}

.about .about-content .personal-info .info-item {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 16px;
}

.about .about-content .personal-info .info-item p {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.about .about-content .personal-info .info-item p span {
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 8px;
}

.about .about-content .personal-info .info-item p span a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.about .about-content .personal-info .info-item p span a:hover {
  color: var(--primary-dark);
}

/* Skills */
.about .about-content .skills {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 40px;
}

.about .about-content .skills .skill-item {
  margin-bottom: 30px;
}

.about .about-content .skills .skill-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about .about-content .skills .skill-item .progress {
  background-color: var(--bg-tertiary);
  height: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.about .about-content .skills .skill-item .progress .progress-in {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  transition: width 1s ease;
}

.about .about-content .skills .skill-item .skill-percent {
  position: absolute;
  right: 0;
  top: -35px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
}

/* Education & Timeline */
.about .about-content .education {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 60px;
}

.about .about-content h3.title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-align: center;
}

.about .about-content .timeline-box {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .timeline {
  background-color: var(--bg-secondary);
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  position: relative;
}

.about .about-content .timeline .timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
}

.about .about-content .timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.about .about-content .timeline .timeline-item::before {
  content: "";
  width: 2px;
  position: absolute;
  height: 100%;
  left: 8px;
  top: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.about .about-content .timeline .circle-dot {
  position: absolute;
  left: 0;
  top: 0;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 4px var(--bg-secondary);
}

.about .about-content .timeline .timeline-date {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.about .about-content .timeline .timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about .about-content .timeline .timeline-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Section */
.contact-info-section {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.contact-info-header {
  margin-bottom: 40px;
}

.contact-info-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-info-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: white;
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--primary-dark);
}

/* Social Connect */
.social-connect {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.social-connect h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.social-links-contact {
  display: flex;
  gap: 12px;
}

.social-link-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.social-link-contact.linkedin {
  background: rgba(10, 102, 194, 0.1);
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.2);
}

.social-link-contact.linkedin:hover {
  background: #0a66c2;
  color: white;
  transform: translateY(-2px);
}

.social-link-contact.github {
  background: rgba(36, 41, 47, 0.1);
  color: #24292f;
  border-color: rgba(36, 41, 47, 0.2);
}

.social-link-contact.github:hover {
  background: #24292f;
  color: white;
  transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-form-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  resize: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--bg-primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-medium);
  align-self: flex-start;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.form-note {
  font-size: 14px;
  color: var(--text-muted);
  margin: 8px 0 0 0;
  font-style: italic;
}

/* Skills Section */
.skills .skills-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.skills .skill-category {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 40px;
}

.skills .category-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.skills .category-title i {
  color: var(--primary-color);
  font-size: 22px;
}

.skills .skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills .skill-badge {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-light);
}

.skills .skill-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.skills .skill-badge i {
  font-size: 18px;
  color: var(--primary-color);
  transition: var(--transition);
}

.skills .skill-badge:hover i {
  color: white;
}

.skills .skill-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}

.skills .skill-badge:hover span {
  color: white;
}

/* ===== ENHANCED EXPERIENCE SECTION ===== */

.experience .experience-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.experience .timeline-company {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}

.experience .timeline-location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.experience .timeline-achievements {
  margin-bottom: 16px;
}

.experience .timeline-achievements h6 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 6px;
}

.experience .achievement-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.experience .achievement-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 8px;
  padding-left: 0;
  position: relative;
}

.experience .achievement-list li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.experience .timeline-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.experience .skill-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  transition: var(--transition);
}

.experience .skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

/* ===== ENHANCED CAREER HIGHLIGHTS TIMELINE ===== */

/* Timeline Container */
/* ===== STUNNING TIMELINE BOX CONTAINER ===== */
.experience .timeline-box {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.03) 0%, 
    rgba(6, 182, 212, 0.02) 50%, 
    rgba(139, 92, 246, 0.03) 100%);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 
    0 20px 60px rgba(37, 99, 235, 0.08),
    0 0 40px rgba(6, 182, 212, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  animation: timelineBoxFloat 8s ease-in-out infinite;
}

/* Timeline box floating animation */
@keyframes timelineBoxFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 
      0 20px 60px rgba(37, 99, 235, 0.08),
      0 0 40px rgba(6, 182, 212, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
      0 30px 80px rgba(37, 99, 235, 0.12),
      0 0 60px rgba(6, 182, 212, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

/* Timeline box background particles */
.experience .timeline-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08), transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.06), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(37, 99, 235, 0.05), transparent 30%);
  animation: timelineBoxParticles 15s linear infinite;
  border-radius: 30px;
  z-index: 0;
}

@keyframes timelineBoxParticles {
  0%, 100% {
    opacity: 0.6;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: rotate(180deg) scale(1.1);
  }
}

/* Timeline box shimmer effect */
.experience .timeline-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.03), 
    transparent);
  animation: timelineBoxShimmer 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes timelineBoxShimmer {
  0%, 100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 1;
  }
}

/* Enhanced timeline container */
.experience .timeline {
  position: relative;
  padding: 20px 0;
  z-index: 2;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    transparent 50%, 
    rgba(37, 99, 235, 0.01) 100%);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* Timeline box hover effects */
.experience .timeline-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 40px 100px rgba(37, 99, 235, 0.15),
    0 0 80px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(37, 99, 235, 0.2);
}

.experience .timeline-box:hover::before {
  animation-duration: 10s;
  opacity: 1;
}

.experience .timeline-box:hover::after {
  animation-duration: 4s;
}

/* Timeline box entrance animation */
.experience .timeline-box {
  animation: timelineBoxEntrance 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both, 
             timelineBoxFloat 8s ease-in-out 1.3s infinite;
}

@keyframes timelineBoxEntrance {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    box-shadow: none;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 
      0 20px 60px rgba(37, 99, 235, 0.08),
      0 0 40px rgba(6, 182, 212, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

/* Enhanced timeline line with more effects */
.experience .timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, 
    var(--primary-color) 0%, 
    var(--accent-color) 30%,
    rgba(139, 92, 246, 0.8) 50%,
    var(--accent-color) 70%, 
    var(--primary-color) 100%);
  border-radius: 2px;
  box-shadow: 
    0 0 10px rgba(37, 99, 235, 0.4),
    0 0 20px rgba(6, 182, 212, 0.2),
    0 0 30px rgba(139, 92, 246, 0.1);
  animation: timelineLineGlow 4s ease-in-out infinite;
}

@keyframes timelineLineGlow {
  0%, 100% {
    box-shadow: 
      0 0 10px rgba(37, 99, 235, 0.4),
      0 0 20px rgba(6, 182, 212, 0.2),
      0 0 30px rgba(139, 92, 246, 0.1);
  }
  50% {
    box-shadow: 
      0 0 20px rgba(37, 99, 235, 0.6),
      0 0 40px rgba(6, 182, 212, 0.4),
      0 0 60px rgba(139, 92, 246, 0.2);
  }
}

/* Mobile responsiveness for timeline box */
@media (max-width: 768px) {
  .experience .timeline-box {
    margin: 0 15px;
    padding: 25px 20px;
    border-radius: 20px;
    animation: timelineBoxFloat 10s ease-in-out infinite; /* Slower on mobile */
  }
  
  .experience .timeline-box:hover {
    transform: translateY(-4px) scale(1.01); /* Less aggressive on mobile */
  }
}

@media (max-width: 480px) {
  .experience .timeline-box {
    margin: 0 10px;
    padding: 20px 15px;
    border-radius: 15px;
  }
  
  .experience .timeline-box::before,
  .experience .timeline-box::after {
    display: none; /* Remove complex animations on very small screens */
  }
}

/* Timeline Item */
.experience .timeline-item {
  position: relative;
  margin-left: 80px;
  margin-bottom: 50px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

/* Enhanced Timeline Item Hover Effect */
.experience .timeline-item:hover {
  transform: translateY(-12px) translateX(6px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(37, 99, 235, 0.15),
    0 0 60px rgba(6, 182, 212, 0.1);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, 
    var(--bg-primary) 0%, 
    rgba(37, 99, 235, 0.03) 100%);
}

.experience .timeline-item:hover::after {
  opacity: 1;
}

/* Timeline Item Background Effect */
.experience .timeline-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.02) 0%, 
    rgba(6, 182, 212, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Remove last item margin */
.experience .timeline-item:last-child {
  margin-bottom: 0;
}

/* Timeline Dot */
.experience .circle-dot {
  position: absolute;
  left: -48px;
  top: 32px;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 4px solid var(--bg-primary);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 3px var(--primary-color);
  transition: all 0.3s ease;
}

.experience .timeline-item:hover .circle-dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.3);
}

/* Timeline Date Badge */
.experience .timeline-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 25px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.experience .timeline-date i {
  font-size: 12px;
}

/* Job Title */
.experience .timeline-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

/* Company Info */
.experience .timeline-company {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.experience .timeline-company i {
  font-size: 14px;
  opacity: 0.8;
}

/* Location */
.experience .timeline-location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.experience .timeline-location i {
  font-size: 12px;
  opacity: 0.7;
}

/* Achievements Section */
.experience .timeline-achievements {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.experience .timeline-achievements h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.experience .timeline-achievements h6::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
}

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

.experience .achievement-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.experience .achievement-list li:last-child {
  margin-bottom: 0;
}

/* Highlight strong text */
.experience .achievement-list li strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Skills Tags Container */
.experience .timeline-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

/* Enhanced Individual Skill Tags with Floating Effects */
.experience .skill-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

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

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

.experience .skill-tag:hover {
  transform: translateY(-4px) scale(1.08) rotate(1deg);
  box-shadow: 
    0 8px 25px rgba(37, 99, 235, 0.5),
    0 0 30px rgba(6, 182, 212, 0.3);
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Certifications Section */
.certifications .certifications-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.certifications .cert-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 30px;
}

.certifications .cert-item-inner {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.certifications .cert-item-inner:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
  border-color: var(--primary-color);
}

.certifications .cert-icon {
  margin-bottom: 20px;
}

.certifications .cert-icon i {
  font-size: 48px;
  color: var(--primary-color);
  transition: var(--transition);
}

.certifications .cert-item-inner:hover .cert-icon i {
  transform: scale(1.1);
  color: var(--accent-color);
}

.certifications .cert-item-inner h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.certifications .cert-provider {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-style: italic;
}

.certifications .cert-platform {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.certifications .cert-item-inner h4 .cert-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.certifications .cert-item-inner h4 .cert-link:hover {
  color: var(--primary-color);
}

.certifications .verify-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.1);
  transition: var(--transition);
}

.certifications .verify-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.certifications .verify-link i {
  font-size: 10px;
}

.certifications .cert-status {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.certifications .status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certifications .status-badge.completed {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.certifications .status-badge.in-progress {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

/* Employment Status Styles */
.status-employed {
  color: #3b82f6 !important;
  font-weight: 600;
}

.status-available {
  color: #10b981 !important;
  font-weight: 600;
}

/* Current Role Styling */
.journey-item.current-role {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
  border-left: 4px solid #3b82f6;
  position: relative;
}

.journey-item.current-role::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -8px;
  width: 12px;
  height: 12px;
  background: #3b82f6;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
}

.role-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.status-badge {
  background: #3b82f6;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-name {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  font-style: italic;
}

/* Hero Badge Styling for Employment Status */
.hero-badge .badge-text {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .section-aside {
    left: -280px;
  }
  
  .section-aside.open {
    left: 0;
  }
  
  .section-aside .aside-nav-toggler {
    display: flex !important;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    animation: mobileTogglePulse 2s infinite;
  }
  
  .section-aside .aside-nav-toggler.open {
    left: 260px;
    background: var(--primary-color);
  }
  
  .section-aside .aside-nav-toggler.open span,
  .section-aside .aside-nav-toggler.open span::before,
  .section-aside .aside-nav-toggler.open span::after {
    background: white;
  }
  
  /* Enhanced mobile toggle animations */
  @keyframes mobileTogglePulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    }
  }
  
  /* Mobile toggle hover effect */
  .section-aside .aside-nav-toggler:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
    animation: none;
  }
  
  /* Enhanced visibility for smaller screens */
  @media (max-width: 768px) {
    .section-aside .aside-nav-toggler {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      border: 3px solid white;
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4), 0 0 0 2px rgba(37, 99, 235, 0.2);
    }
  
    .section-aside .aside-nav-toggler span {
      width: 20px;
      height: 3px;
      background: white;
    }
  
    .section-aside .aside-nav-toggler span::before,
    .section-aside .aside-nav-toggler span::after {
      width: 20px;
      height: 3px;
      background: white;
    }
  }
  
  /* Ultra-visible for very small screens */
  @media (max-width: 480px) {
    .section-aside .aside-nav-toggler {
      width: 55px;
      height: 55px;
      top: 15px;
      left: 15px;
      background: linear-gradient(135deg, #ff6b6b, #ee5a24);
      border: 4px solid white;
      box-shadow: 
        0 8px 25px rgba(255, 107, 107, 0.5),
        0 0 0 3px rgba(255, 107, 107, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
      animation: mobileToggleUltraPulse 1.5s infinite;
    }
  
    @keyframes mobileToggleUltraPulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 
          0 8px 25px rgba(255, 107, 107, 0.5),
          0 0 0 3px rgba(255, 107, 107, 0.3),
          inset 0 2px 5px rgba(255, 255, 255, 0.2);
      }
      50% {
        transform: scale(1.1);
        box-shadow: 
          0 12px 35px rgba(255, 107, 107, 0.7),
          0 0 0 5px rgba(255, 107, 107, 0.5),
          inset 0 2px 5px rgba(255, 255, 255, 0.3);
      }
    }
  }
  
  /* Force visibility on all mobile devices */
  @media (max-width: 1199px) {
    .section-aside .aside-nav-toggler {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      pointer-events: auto !important;
    }
  }
  
  .section-main {
    margin-left: 0;
  }
  
  .section-home {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .home .home-info {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .home .home-img {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 40px;
  }
  
  .about .about-content .personal-info,
  .about .about-content .skills {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .skills .skill-category {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .contact .contact-info-item,
  .certifications .cert-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .hero-actions {
    gap: 16px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .social-links-contact {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .home .home-info h3.my-profession {
    font-size: 36px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .contact .contact-form .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .skills .skill-badge {
    padding: 10px 14px;
  }
  
  .skills .skill-badge i {
    font-size: 16px;
  }
  
  .skills .skill-badge span {
    font-size: 13px;
  }
  
  .skills .category-title {
    font-size: 18px;
  }
  
  /* ===== MOBILE CAREER HIGHLIGHTS OPTIMIZATIONS ===== */
  
  /* Timeline vertical line for mobile */
  .experience .timeline::before {
    left: 20px;
    width: 2px;
  }
  
  /* Timeline items mobile layout */
  .experience .timeline-item {
    margin-left: 50px;
    margin-bottom: 40px;
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  /* Timeline dot mobile positioning */
  .experience .circle-dot {
    left: -28px;
    top: 24px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 2px var(--primary-color);
  }
  
  /* Typography adjustments for mobile */
  .experience .timeline-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .experience .timeline-company {
    font-size: 15px;
  }
  
  .experience .timeline-location {
    font-size: 13px;
    margin-bottom: 16px;
  }
  
  .experience .timeline-date {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 14px;
  }
  
  .experience .timeline-achievements h6 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .experience .achievement-list li {
    font-size: 14px;
    margin-bottom: 10px;
    gap: 8px;
  }
  
  /* Skills tags mobile */
  .experience .timeline-skills {
    gap: 8px;
    margin-top: 16px;
  }
  
  .experience .skill-tag {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 16px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 24px;
  }
  
  .floating-elements {
    display: none;
  }
}

/* ===== ENHANCED HOME SECTION ===== */

/* Hero Badge */
.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.badge-text {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
  animation: badgePulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

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

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
  }
}

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

/* Enhanced Typography */
.home .home-info h3.hello {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.home .home-info h1.my-profession {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.6s both;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.profession-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  color: var(--text-secondary);
  font-family: "Inter", sans-serif;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 1s both;
  justify-content: flex-start;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 1.2s both;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-large);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn i {
  margin-right: 8px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.8s ease 1.4s both;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transition: var(--transition);
  z-index: 1;
}

.social-link:hover::before {
  left: 0;
}

.social-link i {
  font-size: 20px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.social-link:hover i {
  color: white;
}

/* Enhanced Image Section */
.image-container {
  position: relative;
  animation: fadeInRight 1s ease 0.5s both;
}

.profile-image {
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.profile-image:hover {
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
}

.tech-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(10px);
}

/* Floating Elements */
.floating-elements {
  position: relative;
  flex: 0 0 25%; /* Take remaining space */
  max-width: 25%;
  min-height: 400px;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon:nth-child(1) {
  top: 10%;
  right: 10%;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 20%;
}

.floating-icon:nth-child(3) {
  top: 20%;
  left: 10%;
}

.floating-icon:nth-child(4) {
  bottom: 20%;
  left: 20%;
}

.floating-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

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

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

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

/* ===== ENHANCED CONTACT SECTION ===== */

.contact {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Section */
.contact-info-section {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.contact-info-header {
  margin-bottom: 40px;
}

.contact-info-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-info-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: white;
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--primary-dark);
}

/* Social Connect */
.social-connect {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.social-connect h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.social-links-contact {
  display: flex;
  gap: 12px;
}

.social-link-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.social-link-contact.linkedin {
  background: rgba(10, 102, 194, 0.1);
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.2);
}

.social-link-contact.linkedin:hover {
  background: #0a66c2;
  color: white;
  transform: translateY(-2px);
}

.social-link-contact.github {
  background: rgba(36, 41, 47, 0.1);
  color: #24292f;
  border-color: rgba(36, 41, 47, 0.2);
}

.social-link-contact.github:hover {
  background: #24292f;
  color: white;
  transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-form-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  resize: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--bg-primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-medium);
  align-self: flex-start;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.form-note {
  font-size: 14px;
  color: var(--text-muted);
  margin: 8px 0 0 0;
  font-style: italic;
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */

@media (max-width: 991px) {
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .hero-actions {
    gap: 16px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .social-links-contact {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 24px;
  }
  
  .floating-elements {
    display: none;
  }
}

/* ===== ENHANCED ABOUT SECTION ===== */

.about-content-wrapper {
  width: 100%;
}

/* Professional Summary */
.about-intro {
  margin-bottom: 50px;
}

.about-intro-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-intro-content h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

.about-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 22px;
  color: white;
}

.highlight-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.highlight-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* About Details Grid */
.about-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* About Cards */
.about-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: var(--primary-color);
}

.card-header {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-header h3 i {
  color: var(--primary-color);
  font-size: 20px;
}

.card-content {
  padding: 25px;
}

/* Contact Information Card */
.info-grid {
  display: grid;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--bg-secondary);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.info-item:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary-color);
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 16px;
  color: white;
}

.info-details {
  flex: 1;
}

.info-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.info-value:hover {
  color: var(--primary-color);
}

.status-available {
  color: #10b981 !important;
  font-weight: 600;
}

/* Skills Card */
.skills-grid {
  display: grid;
  gap: 25px;
}

.skill-category-mini h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.skill-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  transition: var(--transition);
}

.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

/* Education Card */
.education-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.education-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.education-icon i {
  font-size: 22px;
  color: white;
}

.education-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

.university {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.duration {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

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

.grade-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.grade-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

/* Certifications Summary */
.certifications-summary {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.certifications-summary h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.cert-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

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

.cert-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.cert-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.view-certs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.view-certs-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===== PROJECTS SECTION ===== */

.projects {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.projects-intro {
  text-align: center;
  margin-bottom: 50px;
}

.projects-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), rgba(59, 130, 246, 0.01));
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.project-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.project-status {
  display: flex;
  align-items: center;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.production {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.status-badge.development {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.project-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.project-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-metrics {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.metric-item {
  text-align: center;
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

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

.tech-badge {
  padding: 6px 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.project-highlights {
  margin-top: 20px;
}

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

.project-highlights li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.project-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-card {
    padding: 20px;
  }
  
  .project-metrics {
    flex-direction: column;
    gap: 15px;
  }
  
  .metric-item {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .metric-value {
    margin-bottom: 0;
  }
}

/* Animation for project cards */
@keyframes projectSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card {
  animation: projectSlideIn 0.6s ease forwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== DARK THEME STYLES FOR PROJECTS SECTION ===== */

/* Dark theme for Projects section */
body.dark .projects {
  background: var(--bg-primary);
}

body.dark .projects-description {
  color: var(--text-secondary);
}

body.dark .project-card {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark .project-card::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
}

body.dark .project-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

body.dark .project-card:hover::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
}

body.dark .project-content h3 {
  color: var(--text-primary);
}

body.dark .project-description {
  color: var(--text-secondary);
}

body.dark .metric-value {
  color: var(--primary-color);
}

body.dark .metric-label {
  color: var(--text-muted);
}

body.dark .tech-badge {
  background: var(--bg-primary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

body.dark .project-metrics {
  background: var(--bg-primary);
  border-color: var(--border-color);
}

body.dark .project-highlights li {
  color: var(--text-secondary);
}

body.dark .project-highlights li::before {
  color: var(--primary-color);
}

body.dark .project-icon {
  background: var(--bg-primary);
  border-color: var(--border-color);
}

body.dark .project-icon i {
  color: var(--primary-color);
}

body.dark .status-badge.production {
  background: var(--primary-color);
  color: white;
}

body.dark .status-badge.development {
  background: var(--bg-primary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

/* Dark theme for project featured cards */
body.dark .project-card.featured {
  border-color: var(--primary-color);
}

body.dark .project-card.featured::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
}

/* ===== END DARK THEME PROJECTS STYLES =====*/

/* ===== ENHANCED SMOOTH ANIMATIONS & UX ===== */

/* Global Smooth Transitions */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Enhanced Page Load Animations */
@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-home {
  animation: pageLoad 0.8s ease-out;
}

/* Staggered Content Animations */
@keyframes staggeredFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home .home-info > * {
  animation: staggeredFadeIn 0.6s ease-out;
}

.home .home-info h3.hello { animation-delay: 0.1s; }
.home .home-info h1.my-profession { animation-delay: 0.2s; }
.home .home-info .hero-description { animation-delay: 0.3s; }
.home .home-info .hero-stats { animation-delay: 0.4s; }
.home .home-info .hero-actions { animation-delay: 0.5s; }
.home .home-info .social-links { animation-delay: 0.6s; }

/* Enhanced Button Animations */
.btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::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;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}

/* Smooth Card Animations */
.about-card,
.project-card,
.cert-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.about-card:hover,
.project-card:hover,
.cert-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Navigation Animations */
.section-aside .aside-nav li a {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-aside .aside-nav li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.4s ease;
}

.section-aside .aside-nav li a:hover::before {
  left: 100%;
}

.section-aside .aside-nav li a:hover {
  transform: translateX(5px);
  padding-left: 25px;
}

/* Smooth Image Animations */
.profile-image,
.home-img img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image:hover,
.home-img img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Enhanced Floating Elements */
.floating-icon {
  animation: smoothFloat 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes smoothFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(5deg);
  }
  50% {
    transform: translateY(-5px) rotate(-5deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}

.floating-icon:hover {
  transform: scale(1.3) rotate(15deg) !important;
  color: var(--primary-color);
}

/* Smooth Section Transitions */
.section-home {
  opacity: 1; /* Always visible */
  transform: translateX(0); /* No transform */
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-home.active {
  opacity: 1;
  transform: translateX(0);
}

/* Enhanced Skill Badge Animations */
.skill-badge,
.tech-badge,
.skill-tag {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.skill-badge:hover,
.tech-badge:hover,
.skill-tag:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* Smooth Form Animations */
.form-control {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.form-control:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

/* Enhanced Timeline Animations */
.timeline-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.timeline-item:hover {
  transform: translateX(10px) scale(1.02);
  background: linear-gradient(135deg, var(--bg-secondary), rgba(37, 99, 235, 0.05));
}

/* Smooth Loading States */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Enhanced Theme Switcher Animations */
.style-switcher {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.style-switcher-toggler {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.style-switcher-toggler:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.colors span {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.colors span:hover {
  transform: scale(1.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Smooth Social Links */
.social-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.2);
}

/* Enhanced Stats Animation */
.stat-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-number {
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  color: var(--primary-color);
  transform: scale(1.2);
}

/* Smooth Progress Animations */
@keyframes progressLoad {
  from {
    width: 0%;
  }
  to {
    width: var(--progress-width, 0%);
  }
}

.progress-in {
  animation: progressLoad 2s ease-out;
}

/* Enhanced Contact Info Animations */
.contact-info-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover {
  transform: translateX(10px) scale(1.02);
}

.contact-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover .contact-icon {
  transform: scale(1.2) rotate(10deg);
}

/* Smooth Certification Animations */
.cert-item-inner {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-item-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cert-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-item-inner:hover .cert-icon {
  transform: scale(1.3) rotate(15deg);
}

/* Enhanced Project Metrics Animation */
.metric-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.metric-value {
  transition: all 0.3s ease;
}

.project-card:hover .metric-value {
  color: var(--primary-color);
}

/* Smooth Scroll Indicators */
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.scroll-indicator {
  animation: scrollPulse 2s infinite;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .section-home {
    transform: translateY(0); /* Always visible on mobile */
  }
  
  .section-home.active {
    transform: translateY(0);
  }
  
  .floating-icon {
    animation-duration: 4s;
  }
  
  .about-card:hover,
  .project-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

/* Smooth Dark Theme Transitions */
body.dark * {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Focus States for Accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  transition: outline 0.2s ease;
}

/* Smooth Loading Animation for Images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Enhanced Micro-interactions */
.clickable {
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.clickable:active {
  transform: scale(0.98);
}

/* Smooth Page Transitions */
.page-transition {
  opacity: 0;
  transform: translateY(20px);
  animation: pageTransition 0.6s ease-out forwards;
}

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

/* Enhanced Intersection Observer Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Parallax Effect */
.parallax-element {
  transition: transform 0.1s linear;
}

/* Enhanced Hover States */
.interactive-element {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
  filter: brightness(1.1);
}

/* Smooth Text Selection */
::selection {
  background: rgba(37, 99, 235, 0.2);
  color: var(--text-primary);
}

/* ===== ENHANCED FLOATING ELEMENTS & IMAGE CONTAINER ===== */

/* Image Container */
.img-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  overflow: visible;
}

/* Floating Decorative Icons */
.floating-icon-1 {
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 24px;
  color: #ff9500;
  z-index: 1;
}

.floating-icon-2 {
  position: absolute;
  top: 20%;
  right: 15%;
  font-size: 28px;
  color: #0db7ed;
  z-index: 1;
}

.floating-icon-3 {
  position: absolute;
  bottom: 30%;
  left: 5%;
  font-size: 26px;
  color: var(--primary-color);
  z-index: 1;
}

.floating-icon-4 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  font-size: 30px;
  color: #3776ab;
  z-index: 1;
}

/* Enhanced Floating Animation */
@keyframes enhancedFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translateY(-8px) rotate(-3deg) scale(0.95);
  }
  75% {
    transform: translateY(-20px) rotate(8deg) scale(1.1);
  }
}

.floating-icon {
  animation: enhancedFloat 8s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.floating-icon-1 { animation-delay: 0s; }
.floating-icon-2 { animation-delay: 2s; }
.floating-icon-3 { animation-delay: 4s; }
.floating-icon-4 { animation-delay: 6s; }

.floating-icon:hover {
  transform: scale(1.5) rotate(15deg) !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  z-index: 10;
}

/* Enhanced Profile Image */
.profile-image {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  object-fit: cover;
  border: 5px solid var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-image:hover::before {
  opacity: 0.3;
}

.profile-image:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Responsive Floating Elements */
@media (max-width: 768px) {
  .floating-icon {
    font-size: 18px !important;
  }
  
  .floating-icon-1 {
    top: 5% !important;
    left: 5% !important;
  }
  
  .floating-icon-2 {
    top: 10% !important;
    right: 5% !important;
  }
  
  .floating-icon-3 {
    bottom: 25% !important;
    left: 0% !important;
  }
  
  .floating-icon-4 {
    bottom: 10% !important;
    right: 0% !important;
  }
  
  .profile-image {
    width: 220px !important;
    height: 220px !important;
  }
}

/* Additional Mobile Responsiveness for Home Section */
@media (max-width: 991px) {
  .home .home-info {
    padding: 0 40px; /* Medium padding for tablets */
  }
}

@media (max-width: 767px) {
  .home .home-info {
    padding: 0 20px; /* Minimal padding for mobile */
  }
}

/* Tech Showcase Component */
.tech-showcase {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 80px;
}

.tech-item i {
  font-size: 28px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.tech-item span {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tech-item:hover i {
  transform: scale(1.1);
}

.tech-item:hover span {
  opacity: 1;
}

/* Tech item color variants */
.tech-primary {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
  border-color: rgba(37, 99, 235, 0.2);
  color: #2563eb;
}

.tech-secondary {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(14, 165, 233, 0.05));
  border-color: rgba(6, 182, 212, 0.2);
  color: #0891b2;
}

.tech-accent {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.05));
  border-color: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.tech-primary:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.08));
  border-color: rgba(37, 99, 235, 0.3);
}

.tech-secondary:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(14, 165, 233, 0.08));
  border-color: rgba(6, 182, 212, 0.3);
}

.tech-accent:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(147, 51, 234, 0.08));
  border-color: rgba(168, 85, 247, 0.3);
}

/* Responsive adjustments for tech showcase */
@media (max-width: 991px) {
  .home .home-info,
  .home .home-visual {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .home .home-visual {
    margin-top: 40px;
  }
  
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
  }
  
  .tech-item {
    padding: 15px 10px;
    min-height: 70px;
  }
  
  .tech-item i {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .tech-item {
    padding: 12px 8px;
    min-height: 60px;
  }
  
  .tech-item i {
    font-size: 20px;
  }
  
  .tech-item span {
    font-size: 11px;
  }
}

/* ===== ENHANCED USER ENGAGEMENT ANIMATIONS ===== */

/* 1. Scroll-Triggered Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.delay-1 { transition-delay: 0.1s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.2s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.3s; }
.reveal-on-scroll.delay-4 { transition-delay: 0.4s; }

/* 2. Interactive Number Counter Animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-number.counting {
  animation: countUp 0.6s ease-out;
}

/* 3. Typewriter Effect for Dynamic Text */
.typewriter-text {
  border-right: 2px solid var(--primary-color);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { border-color: var(--primary-color); }
  51%, 100% { border-color: transparent; }
}

/* 4. Magnetic Button Effect */
.magnetic-btn {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.magnetic-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.magnetic-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* 5. Parallax Background Elements */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(45deg, 
    rgba(37, 99, 235, 0.03) 0%, 
    rgba(6, 182, 212, 0.03) 50%, 
    rgba(168, 85, 247, 0.03) 100%);
  transform: translateY(0);
  transition: transform 0.1s linear;
  z-index: -1;
}

/* 6. Card Flip Animation for Skills */
.skill-card-3d {
  perspective: 1000px;
  height: 200px;
}

.skill-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.skill-card-3d:hover .skill-card-inner {
  transform: rotateY(180deg);
}

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

.skill-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

/* 7. Progress Bar Fill Animation */
@keyframes progressFill {
  from { width: 0%; }
  to { width: var(--progress-width); }
}

.progress-animated {
  animation: progressFill 2s ease-out forwards;
}

/* 8. Staggered List Item Animations */
.staggered-list li {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.staggered-list.animate li {
  opacity: 1;
  transform: translateX(0);
}

.staggered-list li:nth-child(1) { transition-delay: 0.1s; }
.staggered-list li:nth-child(2) { transition-delay: 0.2s; }
.staggered-list li:nth-child(3) { transition-delay: 0.3s; }
.staggered-list li:nth-child(4) { transition-delay: 0.4s; }
.staggered-list li:nth-child(5) { transition-delay: 0.5s; }

/* 9. Interactive Tech Grid Enhancements */
.tech-item {
  position: relative;
  overflow: hidden;
}

.tech-item::after {
  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;
}

.tech-item:hover::after {
  left: 100%;
}

/* 10. Floating Action Feedback */
.floating-feedback {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.floating-feedback.show {
  transform: translate(-50%, -50%) scale(1);
}

/* 11. Section Entrance Animations */
.section-enter {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-enter.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 12. Interactive Navigation Indicators */
.nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: 1000;
  transition: width 0.2s ease;
}

/* 13. Breathing Animation for Important Elements */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.breathe-animation {
  animation: breathe 3s ease-in-out infinite;
}

/* 14. Text Highlight Animation */
.highlight-text {
  position: relative;
  color: var(--text-primary);
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-text.animate::after {
  width: 100%;
}

/* 15. Cursor Trail Effect */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
  transition: transform 0.1s ease;
}

/* 16. Loading Skeleton Animation */
@keyframes skeleton-loading {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: skeleton-loading 1.5s infinite;
}

/* 17. Success/Error Message Animations */
@keyframes slideInFromTop {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideOutToTop {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-100%); opacity: 0; }
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  z-index: 1000;
  animation: slideInFromTop 0.5s ease;
}

.notification.hide {
  animation: slideOutToTop 0.5s ease forwards;
}

.notification.success {
  background: #10b981;
  color: white;
}

.notification.error {
  background: #ef4444;
  color: white;
}

/* 18. Enhanced Mobile Touch Feedback */
@media (max-width: 768px) {
  .touch-feedback {
    position: relative;
    overflow: hidden;
  }
  
  .touch-feedback::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  
  .touch-feedback:active::before {
    width: 200px;
    height: 200px;
  }
}

/* 19. Scroll Snap Smooth Navigation */
.scroll-snap-container {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.scroll-snap-section {
  scroll-snap-align: start;
}

/* 20. Performance Optimizations */
.gpu-accelerated {
  transform: translateZ(0);
  will-change: transform;
}

/* ===== ADVANCED MOBILE UI/UX IMPROVEMENTS ===== */

/* Enhanced Mobile Navigation */
@media (max-width: 1199px) {
  .section-aside {
    width: 320px;
    transform: translateX(-320px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    background: rgba(248, 250, 252, 0.95);
  }
  
  .section-aside.open {
    transform: translateX(0);
  }
  
  .section-aside .aside-nav-toggler {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    left: 20px;
    top: 20px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    z-index: 1001;
    transition: all 0.3s ease;
  }

  .section-aside .aside-nav-toggler:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
  }
  
  .section-aside .aside-nav-toggler.open {
    left: 340px;
    background: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .section-aside .aside-nav-toggler.open span,
  .section-aside .aside-nav-toggler.open span::before,
  .section-aside .aside-nav-toggler.open span::after {
    background: white;
  }
  
  /* Mobile Menu Overlay */
  .section-aside::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .section-aside.open::before {
    opacity: 1;
    visibility: visible;
  }
}

/* Enhanced Mobile Typography */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .home .home-info h3.hello {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .home .home-info h1.my-profession {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .profession-subtitle {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  
  .section-title h2 {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 20px;
  }
  
  /* Better readability for small text */
  .skill-tag,
  .tech-badge,
  .stat-label {
    font-size: 12px;
    letter-spacing: 0.3px;
  }
}

/* Enhanced Touch Targets */
@media (max-width: 768px) {
  .btn {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 12px;
    width: 100%;
    max-width: none;
    margin-bottom: 12px;
  }
  
  .social-link {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin: 0 8px;
  }
  
  .social-link i {
    font-size: 22px;
  }
  
  .section-aside .aside-nav li a {
    padding: 16px 24px;
    font-size: 16px;
    min-height: 56px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    margin-bottom: 8px;
  }
  
  .section-aside .aside-nav li a i {
    font-size: 20px;
    margin-right: 16px;
    min-width: 24px;
  }
  
  /* Better form controls */
  .form-control {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 12px;
  }
  
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
}

/* Mobile-Optimized Layout Spacing */
@media (max-width: 768px) {
  .section-home {
    padding: 0 16px;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .padd-15 {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .section-home .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  /* Card spacing improvements */
  .about-card,
  .project-card,
  .cert-item-inner {
    margin-bottom: 20px;
    padding: 20px 16px;
    border-radius: 16px;
  }
  
  .about-details-grid {
    gap: 16px;
  }
  
  .projects-grid {
    gap: 16px;
  }
  
  /* Stats layout */
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
  }
  
  .stat-item {
    min-width: 80px;
    text-align: center;
  }
  
  .stat-number {
    font-size: 24px;
    line-height: 1.1;
  }
  
  .stat-label {
    font-size: 11px;
    margin-top: 4px;
  }
}

/* Enhanced Mobile Forms */
@media (max-width: 768px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .contact-content {
    gap: 20px;
  }
  
  .contact-info-grid {
    gap: 16px;
  }
  
  .contact-info-item {
    padding: 16px;
    border-radius: 12px;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Disable heavy animations on mobile */
  .floating-elements {
    display: none;
  }
  
  .home::before,
  .home::after {
    display: none;
  }
  
  /* Simplified hover effects */
  .project-card:hover,
  .about-card:hover,
  .cert-item-inner:hover {
    transform: none;
  }
  
  /* Reduce animation complexity */
  .tech-item:hover {
    transform: scale(1.02);
  }
  
  /* Optimize shadows */
  .btn,
  .social-link,
  .about-card,
  .project-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .btn:hover,
  .social-link:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
  .section-aside .logo {
    margin-bottom: 40px;
    padding: 16px 0;
  }
  
  .section-aside .logo a {
    font-size: 28px;
  }
  
  .section-aside .logo a span {
    font-size: 32px;
  }
  
  .section-aside .aside-nav {
    padding: 0 16px;
  }
  
  /* Add bottom padding for better scrolling */
  .section-aside {
    padding-bottom: 40px;
    overflow-y: auto;
  }
}

/* Enhanced Mobile Cards */
@media (max-width: 768px) {
  .timeline-item {
    margin-left: 0;
    padding: 16px;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    position: relative;
    margin-bottom: 20px;
  }
  
  .timeline-item::before {
    display: none;
  }
  
  .circle-dot {
    display: none;
  }
  
  .timeline-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  
  .timeline-company {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .timeline-location {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .timeline-achievements h6 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .achievement-list li {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  
  .timeline-skills {
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
  }
  
  .experience .skill-tag {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 8px;
  }
}

/* Mobile Project Cards */
@media (max-width: 768px) {
  .project-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
  }
  
  .metric-item {
    text-align: center;
    padding: 12px 8px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
  }
  
  .metric-value {
    font-size: 18px;
    line-height: 1.2;
  }
  
  .metric-label {
    font-size: 11px;
    margin-top: 4px;
  }
  
  .project-tech {
    gap: 8px;
    margin: 16px 0;
  }
  
  .tech-badge {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 8px;
  }
  
  .project-highlights ul {
    padding-left: 16px;
  }
  
  .project-highlights li {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 6px;
  }
}

/* Enhanced Mobile Skills Section */
@media (max-width: 768px) {
  .skills .skill-category {
    margin-bottom: 20px;
  }
  
  .skills .category-title {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
  }
  
  .skills .skill-items {
    justify-content: center;
    gap: 8px;
  }
  
  .skills .skill-badge {
    padding: 10px 12px;
    min-width: 80px;
    text-align: center;
  }
  
  .skills .skill-badge i {
    font-size: 16px;
    margin-bottom: 4px;
    display: block;
  }
  
  .skills .skill-badge span {
    font-size: 12px;
    display: block;
  }
}

/* Mobile Accessibility Improvements */
@media (max-width: 768px) {
  /* Better focus states for mobile */
  .btn:focus,
  .form-control:focus,
  .social-link:focus,
  .section-aside .aside-nav li a:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  /* Larger tap targets for better accessibility */
  .cert-item-inner,
  .about-card,
  .project-card {
    min-height: 120px;
  }
  
  /* Better contrast for mobile */
  .text-muted,
  .info-label,
  .stat-label {
    color: var(--text-secondary);
    font-weight: 500;
  }
}

/* Mobile Landscape Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  .section-home .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .hero-stats {
    margin-bottom: 16px;
  }
  
  .hero-actions {
    flex-direction: row;
    gap: 12px;
  }
  
  .btn {
    width: auto;
    min-width: 140px;
  }
}

/* Very Small Mobile Devices */
@media (max-width: 480px) {
  .home .home-info h1.my-profession {
    font-size: clamp(24px, 7vw, 36px);
  }
  
  .section-home {
    padding: 0 12px;
  }
  
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .stat-item {
    flex: 1;
    min-width: 70px;
  }
  
  .tech-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .tech-item {
    padding: 10px 6px;
    min-height: 50px;
  }
  
  .tech-item i {
    font-size: 18px;
  }
  
  .tech-item span {
    font-size: 10px;
  }
  
  /* Ultra-mobile Career Highlights */
  .experience .timeline::before {
    left: 16px;
  }
  
  .experience .timeline-item {
    margin-left: 40px;
    padding: 20px 16px;
    margin-bottom: 32px;
  }
  
  .experience .circle-dot {
    left: -24px;
    top: 20px;
    width: 14px;
    height: 14px;
  }
  
  .experience .timeline-title {
    font-size: 18px;
  }
  
  .experience .timeline-company {
    font-size: 14px;
  }
  
  .experience .timeline-date {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .experience .skill-tag {
    font-size: 10px;
    padding: 4px 8px;
  }
}

/* Mobile Dark Mode Optimizations */
body.dark {
  @media (max-width: 768px) {
    .section-aside {
      background: rgba(15, 23, 42, 0.95);
      border-right-color: rgba(51, 65, 85, 0.8);
    }
    
    .about-card,
    .project-card,
    .cert-item-inner {
      background: var(--bg-secondary);
      border: 1px solid rgba(51, 65, 85, 0.5);
    }
    
    .timeline-item {
      background: rgba(30, 41, 59, 0.5);
      border-left-color: var(--primary-color);
    }
    
    .metric-item {
      background: rgba(37, 99, 235, 0.1);
    }
  }
}

/* Improved Mobile Animations */
@media (max-width: 768px) {
  /* Faster, less resource-intensive animations */
  .fade-in-up,
  .reveal-on-scroll {
    transition-duration: 0.4s;
  }
  
  .btn,
  .social-link,
  .tech-item {
    transition-duration: 0.2s;
  }
  
  /* Reduce motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}

/* Mobile Sticky Elements */
@media (max-width: 768px) {
  .section-aside .aside-nav-toggler {
    position: fixed;
    z-index: 1002;
  }
  
  /* Add safe area for devices with notches */
  .section-aside .aside-nav-toggler {
    top: max(20px, env(safe-area-inset-top, 20px));
    left: max(20px, env(safe-area-inset-left, 20px));
  }
  
  .section-aside.open .aside-nav-toggler {
    left: max(340px, calc(340px + env(safe-area-inset-left, 0px)));
  }
}

/* Enhanced Mobile Loading States */
@media (max-width: 768px) {
  .loading-shimmer {
    background: linear-gradient(90deg, 
      rgba(248, 250, 252, 1) 25%, 
      rgba(241, 245, 249, 1) 50%, 
      rgba(248, 250, 252, 1) 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite linear;
  }
  
  body.dark .loading-shimmer {
    background: linear-gradient(90deg, 
      rgba(30, 41, 59, 1) 25%, 
      rgba(51, 65, 85, 1) 50%, 
      rgba(30, 41, 59, 1) 75%);
  }
}

/* Mobile Pull-to-Refresh Prevention */
@media (max-width: 768px) {
  body {
    overscroll-behavior-y: contain;
  }
  
  .section-main {
    overflow-x: hidden;
  }
}

/* ===== END MOBILE IMPROVEMENTS ===== */

/* Mobile Notification System Styles */
.mobile-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 300px;
  max-width: 90vw;
  box-shadow: var(--shadow-large);
  z-index: 10000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.mobile-notification.info {
  border-left: 4px solid var(--primary-color);
}

.mobile-notification.success {
  border-left: 4px solid #10b981;
}

.mobile-notification.error {
  border-left: 4px solid #ef4444;
}

.mobile-notification.warning {
  border-left: 4px solid #f59e0b;
}

.mobile-notification:not(.hide) {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.mobile-notification.hide {
  transform: translateX(-50%) translateY(-100%);
  opacity: 0;
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.notification-message {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
  flex: 1;
}

.notification-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.notification-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* Mobile Touch Feedback */
.touch-active {
  background: rgba(37, 99, 235, 0.1) !important;
  transform: scale(0.98);
}

/* Small Touch Target Warning */
.small-touch-target {
  position: relative;
}

.small-touch-target::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  min-width: 44px;
  min-height: 44px;
  z-index: -1;
}

/* Mobile Device Specific Styles */
.mobile-device .section-aside {
  -webkit-overflow-scrolling: touch;
}

.ios-device {
  /* iOS safe area support */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.android-device .btn {
  /* Prevent Android button styling */
  -webkit-appearance: none;
  appearance: none;
}

/* Keyboard Navigation Styles */
.keyboard-navigation *:focus {
  outline: 3px solid var(--primary-color) !important;
  outline-offset: 2px !important;
}

/* Slow Connection Optimizations */
.slow-connection .floating-icon,
.slow-connection .tech-item:hover,
.slow-connection .parallax-element {
    animation: none !important;
  transform: none !important;
  transition: none !important;
}

/* Mobile Loading States */
.skeleton-loading {
  background: linear-gradient(90deg, 
    rgba(248, 250, 252, 1) 25%, 
    rgba(241, 245, 249, 1) 50%, 
    rgba(248, 250, 252, 1) 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite linear;
  min-height: 200px;
  border-radius: 8px;
}

body.dark .skeleton-loading {
  background: linear-gradient(90deg, 
    rgba(30, 41, 59, 1) 25%, 
    rgba(51, 65, 85, 1) 50%, 
    rgba(30, 41, 59, 1) 75%);
  background-size: 200px 100%;
}

/* Mobile Orientation Styles */
@media (max-width: 768px) and (orientation: portrait) {
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .stat-item {
    flex: 1;
    min-width: 70px;
    max-width: 100px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .section-home .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .home .home-info h1.my-profession {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .hero-description {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

/* Mobile Modal/Popup Styles */
.mobile-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-modal.show {
  opacity: 1;
  visibility: visible;
}

.mobile-modal-content {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 24px;
  margin: 20px;
  max-width: 400px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.3s ease;
}

.mobile-modal.show .mobile-modal-content {
  transform: scale(1) translateY(0);
}

/* Enhanced Mobile Scroll Behavior */
@media (max-width: 768px) {
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  body {
    scroll-behavior: smooth;
  }
  
  .section-main {
    scroll-behavior: smooth;
  }
}

/* Mobile Context Menu Prevention */
@media (max-width: 768px) {
  img,
  .logo,
  .tech-item i {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}

/* Mobile Battery Optimization */
@media (max-width: 768px) {
  /* Reduce GPU usage on low battery */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}

/* Mobile Network Optimization */
@media (max-width: 768px) {
  /* Optimize for slower connections */
  .project-card::before,
  .about-card::before,
  .tech-item::after {
    display: none;
  }
  
  /* Reduce image quality indicators */
  img {
    image-rendering: auto;
  }
}

/* Mobile Print Styles */
@media print {
  .section-aside,
  .aside-nav-toggler,
  .floating-elements,
  .mobile-notification,
  .style-switcher {
    display: none !important;
  }
  
  .section-main {
    margin-left: 0 !important;
  }
  
  .section-home {
    padding: 0 !important;
  }
}

/* Very Small Screens (< 320px) */
@media (max-width: 320px) {
  .container {
    padding: 0 8px;
  }
  
  .section-home {
    padding: 0 8px;
  }
  
  .about-card,
  .project-card,
  .cert-item-inner {
    padding: 16px 12px;
  }
  
  .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .hero-stats {
    gap: 12px;
  }
  
  .stat-item {
    min-width: 60px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .home .home-info h1.my-profession {
    font-size: clamp(20px, 7vw, 32px);
  }
  
  /* Extra-small Career Highlights */
  .experience .timeline::before {
    left: 12px;
  }
  
  .experience .timeline-item {
    margin-left: 32px;
    padding: 16px 12px;
    margin-bottom: 28px;
  }
  
  .experience .circle-dot {
    left: -20px;
    top: 16px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--bg-primary);
  }
  
  .experience .timeline-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .experience .timeline-company {
    font-size: 13px;
  }
  
  .experience .timeline-location {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .experience .timeline-date {
    font-size: 10px;
    padding: 4px 8px;
    margin-bottom: 12px;
  }
  
  .experience .timeline-achievements h6 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .experience .achievement-list li {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .experience .skill-tag {
    font-size: 9px;
    padding: 3px 6px;
  }
}

/* ===== END MOBILE NOTIFICATION STYLES ===== */

/* Section Subtitle */
.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 8px;
  text-align: center;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Resume CTA Section */
.resume-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.resume-cta-content {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.resume-cta-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);
  animation: shimmer 3s infinite;
}

.resume-cta-content h4 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.resume-cta-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.resume-cta .btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.resume-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.resume-cta .btn i {
  margin-right: 8px;
}

/* Mobile optimizations for resume CTA */
@media (max-width: 768px) {
  .resume-cta-content {
    padding: 24px 20px;
    margin: 0 12px;
  }
  
  .resume-cta-content h4 {
    font-size: 18px;
  }
  
  .resume-cta-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .resume-cta .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
  }
}

/* Dark mode styles for resume CTA */
body.dark .resume-cta-content {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  border-color: rgba(37, 99, 235, 0.25);
}

body.dark .resume-cta-content::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

/* ===== END RESUME CTA STYLES ===== */

/* ===== DARK MODE CAREER HIGHLIGHTS ===== */
body.dark .experience .timeline::before {
  background: linear-gradient(180deg, 
    #3b82f6 0%, 
    #06b6d4 50%, 
    #3b82f6 100%);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

body.dark .experience .timeline-item {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(51, 65, 85, 0.5);
}

body.dark .experience .timeline-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

body.dark .experience .timeline-item::after {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.03) 0%, 
    rgba(6, 182, 212, 0.04) 100%);
}

body.dark .experience .circle-dot {
  background: #3b82f6;
  border-color: rgba(15, 23, 42, 1);
  box-shadow: 0 0 0 3px #3b82f6;
}

body.dark .experience .timeline-achievements h6::after {
  background: #3b82f6;
}

body.dark .experience .timeline-title {
  color: #f8fafc;
}

body.dark .experience .timeline-company {
  color: #3b82f6;
}

body.dark .experience .timeline-location {
  color: #94a3b8;
}

body.dark .experience .achievement-list li {
  color: #cbd5e1;
}

body.dark .experience .achievement-list li strong {
  color: #3b82f6;
}

body.dark .experience .timeline-achievements h6 {
  color: #f1f5f9;
}

/* ===== CAREER HIGHLIGHTS ANIMATIONS ===== */

/* Scroll-in animations */
@keyframes timelineSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.experience .timeline-item.animate-in {
  animation: timelineSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Skill tag initial state and animation */
.experience .skill-tag {
  transform: translateY(10px) scale(0.9);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience .timeline-item.animate-in .skill-tag {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Focus states for accessibility */
.experience .timeline-item.focused {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
}

/* Touch feedback */
.experience .timeline-item.touch-active {
  transform: translateY(-4px) translateX(2px) scale(0.98);
  transition: transform 0.15s ease;
}

/* Skip link styles */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
}

/* Enhanced mobile touch areas */
@media (max-width: 768px) {
  .experience .timeline-item {
    position: relative;
  }
  
  .experience .timeline-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
  }
  
  /* Improve readability on mobile */
  .experience .achievement-list li {
    line-height: 1.8;
  }
  
  /* Better spacing for touch */
  .experience .timeline-skills .skill-tag {
    margin: 4px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Dark mode animation adjustments */
body.dark .experience .timeline-item.animate-in {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body.dark .experience .timeline-item.focused {
  outline-color: #3b82f6;
}

body.dark .experience .timeline-item.touch-active {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Resume CTA mobile enhancement */
@media (max-width: 768px) {
  .resume-cta {
    margin-top: 32px;
    padding: 0 16px;
  }
  
  .resume-cta-content {
    padding: 24px 20px;
  }
  
  .resume-cta-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .resume-cta-content p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .resume-cta .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
  .experience .timeline-item {
    will-change: transform;
  }
  
  .experience .timeline-item:hover {
    will-change: auto;
  }
  
  /* Reduce motion for better performance on low-end devices */
  @media (prefers-reduced-motion: reduce) {
    .experience .timeline-item,
    .experience .skill-tag {
      animation: none !important;
      transition: none !important;
    }
    
    .experience .timeline-item.animate-in {
      opacity: 1;
      transform: none;
    }
  }
}

/* ===== LOGO PERFORMANCE & ACCESSIBILITY ENHANCEMENTS ===== */

/* Hardware acceleration for smooth animations */
.section-aside .logo a,
.section-aside .logo a span,
.section-aside .logo::before,
.section-aside .logo::after,
.section-aside .logo .logo-badge {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .section-aside .logo a {
    background: var(--text-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-aside .logo .logo-subtitle {
    background: var(--text-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .section-aside .logo a,
  .section-aside .logo a span,
  .section-aside .logo::before,
  .section-aside .logo::after,
  .section-aside .logo .logo-badge,
  .section-aside .logo .logo-top-line,
  .section-aside .logo .logo-bottom-line,
  .section-aside .logo .logo-subtitle {
    animation: none !important;
    transition: none !important;
  }
  
  .section-aside .logo a:hover,
  .section-aside .logo a:hover span {
    transform: none !important;
  }
}

/* Focus styles for accessibility */
.section-aside .logo a:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 8px;
}

.section-aside .logo a:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Logo loading state */
.section-aside .logo.loading a {
  background: var(--text-muted);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShimmer 1.5s linear infinite;
}

@keyframes logoShimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

/* Enhanced touch targets for mobile */
@media (max-width: 768px) {
  .section-aside .logo a {
    padding: 10px;
    margin: -10px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Print styles */
@media print {
  .section-aside .logo::before,
  .section-aside .logo::after,
  .section-aside .logo .logo-top-line,
  .section-aside .logo .logo-bottom-line {
    display: none;
  }
  
  .section-aside .logo a {
    color: #000 !important;
    background: none !important;
    -webkit-text-fill-color: #000 !important;
  }
  
  .section-aside .logo .logo-subtitle {
    color: #666 !important;
    background: none !important;
    -webkit-text-fill-color: #666 !important;
  }
}

/* Logo container hit area for better interaction */
.section-aside .logo {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Hover performance optimization */
.section-aside .logo:hover {
  will-change: transform, box-shadow;
}

.section-aside .logo:not(:hover) {
  will-change: auto;
}

/* Logo visibility animation on page load */
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-aside .logo {
  animation: logoFadeIn 1s ease-out;
}

/* Particle effect performance optimization */
@media (max-width: 768px) {
  .section-aside .logo::after {
    animation-duration: 12s; /* Slower on mobile for better performance */
  }
}

/* Dark mode particle effects enhancement */
body.dark .section-aside .logo::after {
  background: 
    radial-gradient(2px 2px at 20px 30px, rgba(59, 130, 246, 0.4), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.5), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(139, 92, 246, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(59, 130, 246, 0.3), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(6, 182, 212, 0.4), transparent);
}

/* ===== UNIVERSAL FLOATING ELEMENTS SYSTEM ===== */

/* Base floating elements container for all sections */
.section-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Enhanced floating icons for all sections */
.floating-icon-universal {
  position: absolute;
  font-size: 18px;
  opacity: 0.3;
  color: var(--primary-color);
  animation: universalFloat 15s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.2));
  pointer-events: auto;
  cursor: pointer;
}

.floating-icon-universal:hover {
  opacity: 0.8;
  transform: scale(1.3) rotate(15deg);
  filter: drop-shadow(0 4px 16px rgba(37, 99, 235, 0.4));
  z-index: 10;
}

/* About Section Floating Elements */
.about .section-floating-elements .floating-icon-universal:nth-child(1) {
  top: 15%;
  left: 8%;
  color: #10b981;
  animation-delay: 0s;
  font-size: 16px;
}

.about .section-floating-elements .floating-icon-universal:nth-child(2) {
  top: 25%;
  right: 12%;
  color: #f59e0b;
  animation-delay: 2s;
  font-size: 20px;
}

.about .section-floating-elements .floating-icon-universal:nth-child(3) {
  bottom: 20%;
  left: 15%;
  color: #8b5cf6;
  animation-delay: 4s;
  font-size: 22px;
}

.about .section-floating-elements .floating-icon-universal:nth-child(4) {
  bottom: 35%;
  right: 18%;
  color: #ef4444;
  animation-delay: 6s;
  font-size: 18px;
}

.about .section-floating-elements .floating-icon-universal:nth-child(5) {
  top: 50%;
  left: 5%;
  color: #06b6d4;
  animation-delay: 1s;
  font-size: 24px;
}

/* Skills Section Floating Elements */
.skills .section-floating-elements .floating-icon-universal:nth-child(1) {
  top: 10%;
  left: 10%;
  color: #ff6b35;
  animation-delay: 0.5s;
}

.skills .section-floating-elements .floating-icon-universal:nth-child(2) {
  top: 30%;
  right: 15%;
  color: #4338ca;
  animation-delay: 2.5s;
}

.skills .section-floating-elements .floating-icon-universal:nth-child(3) {
  bottom: 25%;
  left: 20%;
  color: #059669;
  animation-delay: 4.5s;
}

.skills .section-floating-elements .floating-icon-universal:nth-child(4) {
  bottom: 10%;
  right: 8%;
  color: #dc2626;
  animation-delay: 6.5s;
}

/* Contact Section Floating Elements */
.contact .section-floating-elements .floating-icon-universal:nth-child(1) {
  top: 20%;
  left: 12%;
  color: #7c3aed;
  animation-delay: 1s;
}

.contact .section-floating-elements .floating-icon-universal:nth-child(2) {
  top: 40%;
  right: 10%;
  color: #0891b2;
  animation-delay: 3s;
}

.contact .section-floating-elements .floating-icon-universal:nth-child(3) {
  bottom: 30%;
  left: 8%;
  color: #ea580c;
  animation-delay: 5s;
}

/* Projects Section Floating Elements */
.projects .section-floating-elements .floating-icon-universal:nth-child(1) {
  top: 12%;
  left: 6%;
  color: #9333ea;
  animation-delay: 0.8s;
}

.projects .section-floating-elements .floating-icon-universal:nth-child(2) {
  top: 35%;
  right: 20%;
  color: #0d9488;
  animation-delay: 2.8s;
}

.projects .section-floating-elements .floating-icon-universal:nth-child(3) {
  bottom: 15%;
  left: 25%;
  color: #c2410c;
  animation-delay: 4.8s;
}

.projects .section-floating-elements .floating-icon-universal:nth-child(4) {
  bottom: 40%;
  right: 5%;
  color: #1d4ed8;
  animation-delay: 6.8s;
}

/* Certifications Section Floating Elements */
.certifications .section-floating-elements .floating-icon-universal:nth-child(1) {
  top: 18%;
  left: 14%;
  color: #be185d;
  animation-delay: 1.5s;
}

.certifications .section-floating-elements .floating-icon-universal:nth-child(2) {
  top: 45%;
  right: 12%;
  color: #166534;
  animation-delay: 3.5s;
}

.certifications .section-floating-elements .floating-icon-universal:nth-child(3) {
  bottom: 20%;
  left: 18%;
  color: #b45309;
  animation-delay: 5.5s;
}

/* Universal Float Animation */
@keyframes universalFloat {
    0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-15px) translateX(10px) rotate(5deg) scale(1.1);
    opacity: 0.5;
    }
    50% {
    transform: translateY(-8px) translateX(-8px) rotate(-3deg) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-20px) translateX(15px) rotate(8deg) scale(1.15);
    opacity: 0.6;
  }
}

/* ===== ENHANCED CAREER HIGHLIGHTS FLOATING BACKGROUNDS ===== */

/* Timeline floating background particles - Fixed positioning */
.experience .timeline-item .floating-particles {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(2px 2px at 15% 20%, rgba(37, 99, 235, 0.1), transparent),
    radial-gradient(1px 1px at 80% 30%, rgba(6, 182, 212, 0.15), transparent),
    radial-gradient(2px 2px at 25% 70%, rgba(139, 92, 246, 0.1), transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(37, 99, 235, 0.08), transparent),
    radial-gradient(3px 3px at 40% 10%, rgba(6, 182, 212, 0.12), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(139, 92, 246, 0.1), transparent);
  animation: timelineParticleFloat 20s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
  border-radius: 20px;
}

.experience .timeline-item:hover .floating-particles {
  opacity: 1;
}

/* Timeline particle floating animation */
@keyframes timelineParticleFloat {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 0%, 100% 50%;
  }
  25% {
    background-position: 25% 25%, 75% 25%, 25% 75%, 75% 75%, 60% 10%, 90% 60%;
  }
  50% {
    background-position: 50% 50%, 50% 50%, 50% 50%, 50% 50%, 70% 20%, 80% 70%;
  }
  75% {
    background-position: 75% 25%, 25% 75%, 75% 25%, 25% 75%, 80% 30%, 70% 80%;
  }
  100% {
    background-position: 100% 0%, 0% 100%, 100% 0%, 0% 100%, 90% 40%, 60% 90%;
  }
}

/* Enhanced timeline item with floating border */
.experience .timeline-item .floating-border {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(37, 99, 235, 0.3) 0%,
    rgba(6, 182, 212, 0.2) 25%,
    rgba(139, 92, 246, 0.3) 50%,
    rgba(37, 99, 235, 0.2) 75%,
    rgba(6, 182, 212, 0.3) 100%);
  background-size: 400% 400%;
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: floatingBorder 8s ease-in-out infinite;
}

.experience .timeline-item:hover .floating-border {
  opacity: 1;
}

/* Floating border animation */
@keyframes floatingBorder {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ===== ENGAGING USER EXPERIENCE ANIMATIONS ===== */

/* Scroll-triggered floating text animations */
.floating-text-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-text-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered card animations - Fixed for timeline items */
.card-float-in {
  opacity: 1; /* Show by default, then animate */
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-float-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Enhanced timeline item animations */
.experience .timeline-item {
  opacity: 1 !important;
  visibility: visible !important;
  animation: timelineItemSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.experience .timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.experience .timeline-item:nth-child(2) {
  animation-delay: 0.3s;
}

.experience .timeline-item:nth-child(3) {
  animation-delay: 0.5s;
}

/* Timeline item slide-in animation */
@keyframes timelineItemSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px) translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

.card-float-in:nth-child(1) { transition-delay: 0.1s; }
.card-float-in:nth-child(2) { transition-delay: 0.2s; }
.card-float-in:nth-child(3) { transition-delay: 0.3s; }
.card-float-in:nth-child(4) { transition-delay: 0.4s; }
.card-float-in:nth-child(5) { transition-delay: 0.5s; }

/* Interactive hover effects for all cards */
.interactive-hover-float {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.interactive-hover-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(37, 99, 235, 0.1) 50%, 
    transparent 100%);
  transition: left 0.6s ease;
  z-index: 1;
}

.interactive-hover-float:hover::before {
  left: 100%;
}

.interactive-hover-float:hover {
  transform: translateY(-6px) scale(1.02);
      box-shadow: 
    0 20px 40px rgba(37, 99, 235, 0.15),
    0 0 60px rgba(6, 182, 212, 0.1);
}

/* Floating navigation enhancement */
.aside-nav li a {
  position: relative;
  overflow: hidden;
}

.aside-nav li a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aside-nav li a:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  right: 10px;
}

/* Floating skill badges */
.skill-badge {
  position: relative;
  overflow: hidden;
}

.skill-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--primary-color), 
    var(--accent-color), 
    var(--primary-color));
  background-size: 400% 400%;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  animation: skillBadgeGlow 3s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

.skill-badge:hover::before {
  opacity: 1;
}

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

/* ===== MOBILE FLOATING OPTIMIZATIONS ===== */

@media (max-width: 768px) {
  .section-floating-elements {
    opacity: 0.7;
  }
  
  .floating-icon-universal {
    font-size: 14px;
    animation-duration: 20s; /* Slower for better performance */
  }
  
  .experience .timeline-item::before {
    animation-duration: 30s; /* Much slower on mobile */
  }
  
  /* Reduce floating effects for very small screens */
@media (max-width: 480px) {
    .section-floating-elements {
      display: none; /* Hide on very small screens for performance */
    }
  }
}

/* Dark mode floating enhancements */
body.dark .floating-icon-universal {
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

body.dark .floating-icon-universal:hover {
  filter: drop-shadow(0 4px 16px rgba(59, 130, 246, 0.6));
}

body.dark .experience .timeline-item::before {
  background: 
    radial-gradient(2px 2px at 15% 20%, rgba(59, 130, 246, 0.15), transparent),
    radial-gradient(1px 1px at 80% 30%, rgba(6, 182, 212, 0.2), transparent),
    radial-gradient(2px 2px at 25% 70%, rgba(139, 92, 246, 0.15), transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(59, 130, 246, 0.12), transparent),
    radial-gradient(3px 3px at 40% 10%, rgba(6, 182, 212, 0.18), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(139, 92, 246, 0.15), transparent);
}

body.dark .interactive-hover-float:hover {
    box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(59, 130, 246, 0.2);
}

/* ===== DARK MODE TIMELINE BOX STYLES ===== */
body.dark .experience .timeline-box {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.08) 0%, 
    rgba(6, 182, 212, 0.06) 50%, 
    rgba(139, 92, 246, 0.08) 100%);
  border-color: rgba(59, 130, 246, 0.2);
      box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark .experience .timeline-box:hover {
      box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

body.dark .experience .timeline-box::before {
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.12), transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.1), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(59, 130, 246, 0.08), transparent 30%);
}

body.dark .experience .timeline-box::after {
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.01), 
    transparent);
}

body.dark .experience .timeline {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.01) 0%, 
    transparent 50%, 
    rgba(59, 130, 246, 0.02) 100%);
}

body.dark .experience .timeline {
  background: 
    linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%),
    radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(51, 65, 85, 0.3);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(148, 163, 184, 0.1);
}

/* ===== BEAUTIFUL MOBILE NAVIGATION TOGGLE ===== */

/* Hide hamburger during loader and on desktop by default */
.section-aside .aside-nav-toggler {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Hide hamburger completely during loading state */
body:not(.loader-hidden) .section-aside .aside-nav-toggler {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Only show on tablets and mobile devices AFTER loading */
@media (max-width: 991px) {
  body.loader-hidden .section-aside .aside-nav-toggler {
    display: flex !important;
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 10001 !important;
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 0.95), 
      rgba(59, 130, 246, 0.9)) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 18px !important;
    box-shadow: 
      0 10px 30px rgba(37, 99, 235, 0.3),
      0 5px 15px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    backdrop-filter: blur(12px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    justify-content: center !important;
    align-items: center !important;
    transform: none !important;
    margin: 0 !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler:hover {
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 1), 
      rgba(99, 102, 241, 0.95)) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 
      0 15px 40px rgba(37, 99, 235, 0.4),
      0 8px 25px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }

  /* Modern hamburger icon */
  body.loader-hidden .section-aside .aside-nav-toggler span {
    width: 22px !important;
    height: 2.5px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 2px !important;
    position: relative !important;
    display: block !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler span::before,
  body.loader-hidden .section-aside .aside-nav-toggler span::after {
    content: "" !important;
    width: 22px !important;
    height: 2.5px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 2px !important;
    position: absolute !important;
    left: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler span::before {
    top: -7px !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler span::after {
    top: 7px !important;
  }

  /* Beautiful open state animation */
  body.loader-hidden .section-aside .aside-nav-toggler.open {
    background: linear-gradient(135deg, 
      rgba(6, 182, 212, 0.95), 
      rgba(14, 165, 233, 0.9)) !important;
    transform: rotate(180deg) scale(1.05) !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler.open span {
    background: transparent !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler.open span::before {
    transform: rotate(45deg) !important;
    top: 0 !important;
  }

  body.loader-hidden .section-aside .aside-nav-toggler.open span::after {
    transform: rotate(-45deg) !important;
    top: 0 !important;
  }
}

/* Enhanced styling for phones */
@media (max-width: 768px) {
  body.loader-hidden .section-aside .aside-nav-toggler {
    width: 54px !important;
    height: 54px !important;
    border-radius: 17px !important;
    top: 18px !important;
    left: 18px !important;
  }
}

/* Beautiful styling for small phones */
@media (max-width: 480px) {
  body.loader-hidden .section-aside .aside-nav-toggler {
    width: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 0.98), 
      rgba(139, 92, 246, 0.95)) !important;
    box-shadow: 
      0 12px 35px rgba(37, 99, 235, 0.35),
      0 6px 20px rgba(139, 92, 246, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  }
}

/* Dark mode enhancements */
body.dark .section-aside .aside-nav-toggler {
  background: linear-gradient(135deg, #1e293b, #334155) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(148, 163, 184, 0.1) !important;
}

body.dark .section-aside .aside-nav-toggler:hover {
  background: linear-gradient(135deg, #334155, #475569) !important;
  border-color: rgba(148, 163, 184, 0.3) !important;
}

body.dark .section-aside .aside-nav-toggler.open {
  background: linear-gradient(135deg, var(--accent-color), #0891b2) !important;
}


/* ===== EMERGENCY MOBILE NAVIGATION TOGGLE - ULTRA VISIBLE ===== */

body.dark .section-aside .aside-nav-toggler.open {
  background: linear-gradient(135deg, var(--accent-color), #0891b2) !important;
}

/* ===== FORCE MOBILE TOGGLE VISIBILITY ===== */
/* This ensures the mobile toggle is ALWAYS visible after page load */
@media (max-width: 1199px) {
  .aside-nav-toggler {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: fixed !important;
    z-index: 10000 !important;
  }
  
  body.loader-hidden .aside-nav-toggler,
  body:not(.loading) .aside-nav-toggler {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Override any conflicting animations */
  .aside-nav-toggler * {
    opacity: 1 !important;
    visibility: visible !important;
  }
}




/* ===== ULTIMATE MOBILE TOGGLE FIX ===== */
/* This overrides the section-aside positioning issue */
@media (max-width: 1199px) {
  .section-aside .aside-nav-toggler {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    z-index: 999999 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    /* Override parent left positioning */
    margin-left: 280px !important;
  }
  
  /* When aside is open, position correctly */
  .section-aside.open .aside-nav-toggler {
    left: 300px !important;
    margin-left: 0 !important;
  }
}
