body {
  background: #111;
  color: #e2e8f0;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.profile-container {
  max-width: 1200px;
  width: 100%;
  /* background: rgba(17, 17, 17, 0.8); */
  /* backdrop-filter: blur(5px); */
  border-radius: 32px;
  padding: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.profile-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.profile-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

/* Profile Header */
.profile-header {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.profile-image-container {
  position: relative;   
  display: inline-block;
  padding: 6px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa, #93c5fd);
  border-radius: 50%;
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
  box-shadow: 
    0 0 30px rgba(59, 130, 246, 0.4),
    0 0 60px rgba(30, 58, 138, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.profile-image-container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa, #93c5fd);
  border-radius: 50%;
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite reverse;
  z-index: -2;
  filter: blur(8px);
  opacity: 0.6;
}

.profile-image-container img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 20px rgba(59, 130, 246, 0.2);
}

.profile-image-container:hover img {
  transform: scale(1.05) rotate(1deg);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(59, 130, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.profile-image-container:hover {
  transform: scale(1.01);
  box-shadow: 
    0 0 50px rgba(59, 130, 246, 0.5),
    0 0 100px rgba(30, 58, 138, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

.profile-image-border {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6, #60a5fa, #93c5fd);
  background-size: 400% 400%;
  animation: gradientShift 4s ease infinite;
  z-index: -3;
  opacity: 0.8;
  box-shadow: 
    0 0 20px rgba(59, 130, 246, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.profile-status {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 255, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #e2e8f0;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00ff00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Profile Info */
.profile-info {
  flex: 1;
}

.name-title h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.professional-title, .professional-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #a8b2d1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.professional-title i, .professional-subtitle i {
  color: #667eea;
  font-size: 1rem;
}

/* Profile Stats */
.profile-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(17, 17, 17, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #a8b2d1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Profile Content */
.profile-content {
  animation: fadeInUp 1s ease-out 0.8s both;
}

.about-section, .skills-section {
  margin-bottom: 2rem;
}

.about-section h3, .skills-section h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.about-section h3 i, .skills-section h3 i {
  color: #667eea;
}

.tagline {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e2e8f0;
  text-align: justify;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.skill-category h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #a8b2d1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.3);
  color: #e2e8f0;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(102, 126, 234, 0.3);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
}

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

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

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile {
    padding: 1rem;
  }
  
  .profile-container {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .name-title h1 {
    font-size: 2.5rem;
  }
  
  .professional-title, .professional-subtitle {
    font-size: 1rem;
    justify-content: center;
  }
  
  .profile-stats {
    justify-content: center;
    gap: 1rem;
  }
  
  .stat-item {
    padding: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .tagline {
    font-size: 1rem;
    text-align: center;
  }
  
  .profile-image-container img {
    width: 160px;
    height: 160px;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .name-title h1 {
    font-size: 2rem;
  }
  
  .professional-title, .professional-subtitle {
    font-size: 0.9rem;
  }
  
  .tagline {
    font-size: 0.95rem;
  }
  
  .profile-image-container img {
    width: 120px;
    height: 120px;
  }
  
  .profile-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    width: 150px;
  }
}

/* Hover Effects */
.profile-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Connections Section */
.connections {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.connections-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.8s both;
}

.connections-container h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: rgba(17, 17, 17, 0.8);
  border-radius: 16px;
  text-decoration: none;
  color: #e2e8f0;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 120px;
  position: relative;
  overflow: hidden;
}

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

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

.social-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-link i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.2);
}

.social-link span {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Platform-specific colors */
.social-link.twitter:hover {
  background: rgba(29, 161, 242, 0.2);
  border-color: #1da1f2;
}

.social-link.leetcode:hover {
  background: rgba(255, 161, 0, 0.2);
  border-color: #ffa100;
}

.social-link.linkedin:hover {
  background: rgba(0, 119, 181, 0.2);
  border-color: #0077b5;
}

.social-link.github:hover {
  background: rgba(36, 41, 46, 0.2);
  border-color: #24292e;
}

.social-link.codeforces:hover {
  background: rgba(0, 119, 181, 0.2);
  border-color: #0077b5;
}

.social-link.gmail:hover {
  background: rgba(220, 53, 69, 0.2);
  border-color: #dc3545;
}

/* Responsive Design for Connections */
@media (max-width: 768px) {
  .connections {
    padding: 1rem;
  }
  
  .connections-container {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .connections-container h3 {
    font-size: 1.75rem;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-link {
    padding: 1rem;
    min-width: 100px;
  }
  
  .social-link i {
    font-size: 1.5rem;
  }
  
  .social-link span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .connections-container h3 {
    font-size: 1.5rem;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 200px;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .social-link i {
    margin-bottom: 0;
  }
}

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

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

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

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

/* Projects Section */
.projects {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
}

.projects-container {
  max-width: 1400px;
  width: 100%;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(25px);
  border-radius: 32px;
  padding: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.projects-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.projects-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.projects-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.projects-header h2 i {
  color: #667eea;
  font-size: 2rem;
}

.projects-header p {
  font-size: 1.1rem;
  color: #a8b2d1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
  background: rgba(17, 17, 17, 0.6);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.project-card:nth-child(2) {
  animation-delay: 0.6s;
}

.project-card:nth-child(3) {
  animation-delay: 0.8s;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

/* Project Image */
.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

/* Project Tech Stack */
.project-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  position: relative;
  overflow: hidden;
}

.project-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.project-image-placeholder i {
  font-size: 4rem;
  color: #667eea;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease;
}

.project-card:hover .project-image-placeholder i {
  transform: scale(1.2);
  color: #764ba2;
}

.project-image-placeholder.appointment {
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.2), rgba(0, 201, 167, 0.2));
}

.project-image-placeholder.appointment i {
  color: #00b894;
}

.project-image-placeholder.bus {
  background: linear-gradient(135deg, rgba(255, 161, 0, 0.2), rgba(255, 107, 0, 0.2));
}

.project-image-placeholder.bus i {
  color: #ffa100;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.3);
  color: #e2e8f0;
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.tech-tag i, .tech-tag img.tech-icon-img {
  font-size: 1.2em;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  display: inline-block;
}

.tech-tag img.tech-icon-img {
  object-fit: contain;
  border-radius: 4px;
  background: transparent;
  margin: 0 2px;
}

.tech-tag:hover {
  background: rgba(102, 126, 234, 0.3);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Custom Tooltip */
.tech-tag[title]:hover::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  background: #222b;
  color: #fff;
  padding: 0.35em 0.8em;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.85em;
  font-weight: 400;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  opacity: 1;
  pointer-events: none;
  z-index: 100;
  transition: opacity 0.2s;
}

.tech-tag[title]::after {
  opacity: 0;
  pointer-events: none;
}

/* Project Content */
.project-content {
  padding: 2rem;
}

.project-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #a8b2d1;
  margin-bottom: 1.5rem;
}

/* Project Features */
.project-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.feature-item i {
  color: #667eea;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.feature-item span {
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 500;
}

/* Project Actions */
.project-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-color: #667eea;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn i {
  font-size: 0.8rem;
}

/* Projects Footer */
.projects-footer {
  text-align: center;
  animation: fadeInUp 1s ease-out 1s both;
}

.btn-more {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  color: #e2e8f0;
  border: 2px solid rgba(102, 126, 234, 0.3);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-more:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

/* Responsive Design for Projects */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .projects {
    padding: 1rem;
  }
  
  .projects-container {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .projects-header h2 {
    font-size: 2rem;
  }
  
  .projects-header p {
    font-size: 1rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .project-content {
    padding: 1.5rem;
  }
  
  .project-content h3 {
    font-size: 1.25rem;
  }
  
  .project-description {
    font-size: 0.95rem;
  }
  
  .project-actions {
    flex-direction: column;
  }
  
  .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .projects-header h2 {
    font-size: 1.75rem;
  }
  
  .project-content {
    padding: 1rem;
  }
  
  .project-features {
    gap: 0.5rem;
  }
  
  .feature-item {
    padding: 0.4rem;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
}

/* Blog Section */
.blog {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(25, 25, 25, 0.95) 100%);
}

.blog-container {
  max-width: 1200px;
  width: 100%;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(25px);
  border-radius: 32px;
  padding: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.blog-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.blog-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.blog-header h2 i {
  color: #667eea;
  font-size: 2rem;
}

.blog-header p {
  font-size: 1.1rem;
  color: #a8b2d1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blog Content */
.blog-content {
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.blog-post {
  background: rgba(17, 17, 17, 0.6);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.blog-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

/* Blog Post Image */
.blog-post-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  position: relative;
  overflow: hidden;
}

.blog-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.blog-image-placeholder i {
  font-size: 5rem;
  color: #667eea;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease;
}

.blog-post:hover .blog-image-placeholder i {
  transform: scale(1.1);
  color: #764ba2;
}

/* Blog Post Meta */
.blog-post-meta {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.blog-category {
  background: rgba(102, 126, 234, 0.9);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-date {
  background: rgba(0, 0, 0, 0.7);
  color: #a8b2d1;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Blog Post Content */
.blog-post-content {
  padding: 2.5rem;
}

.blog-post-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 1rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #a8b2d1;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Blog Post Tags */
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.blog-tag {
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.3);
  color: #e2e8f0;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-tag:hover {
  background: rgba(102, 126, 234, 0.3);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-1px);
}



.blog-post-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-footer {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

@media (max-width: 768px) {
  .blog {
    padding: 1rem;
  }
  
  .blog-container {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .blog-header h2 {
    font-size: 2rem;
  }
  
  .blog-header p {
    font-size: 1rem;
  }
  
  .blog-post-content {
    padding: 1.5rem;
  }
  
  .blog-post-content h3 {
    font-size: 1.5rem;
  }
  
  .blog-excerpt {
    font-size: 1rem;
  }
  

  
  .blog-post-actions {
    flex-direction: column;
  }
  
  .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .blog-header h2 {
    font-size: 1.75rem;
  }
  
  .blog-post-content {
    padding: 1rem;
  }
  
  .blog-post-content h3 {
    font-size: 1.25rem;
  }
  
  .blog-excerpt {
    font-size: 0.95rem;
  }
  
  .blog-post-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .blog-category, .blog-date {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Experience Section */
.experience {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(28, 28, 28, 0.95) 100%);
}

.experience-container {
  max-width: 1400px;
  width: 100%;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(25px);
  border-radius: 32px;
  padding: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.experience-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.experience-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.experience-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.experience-header h2 i {
  color: #667eea;
  font-size: 2rem;
}

.experience-header p {
  font-size: 1.1rem;
  color: #a8b2d1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Timeline */
.experience-timeline {
  position: relative;
  padding-left: 3rem;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 2px;
  animation: timelineGlow 3s ease-in-out infinite;
}

@keyframes timelineGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  animation: slideInLeft 1s ease-out both;
}

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

.timeline-item:nth-child(2) {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Timeline Marker */
.timeline-marker {
  position: absolute;
  left: -2.25rem;
  top: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.timeline-marker::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: inherit;
  filter: blur(8px);
  opacity: 0.5;
  z-index: -1;
}

.timeline-marker.google {
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

.timeline-marker.microsoft {
  background: linear-gradient(135deg, #00a4ef, #7fba00, #f25022, #ffb900);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

.timeline-marker.amazon {
  background: linear-gradient(135deg, #ff9900, #232f3e, #37475a, #146eb4);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

.timeline-marker.tjdeed {
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
}

/* Current Position Special Styling */
.current-position {
  animation: currentPositionGlow 2s ease-in-out infinite alternate;
}

@keyframes currentPositionGlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(5px);
  }
}

.current-experience {
  border: 2px solid rgba(102, 126, 234, 0.5);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(102, 126, 234, 0.3),
    inset 0 1px 0 rgba(102, 126, 234, 0.2);
}

.current-experience::before {
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #667eea);
  background-size: 400% 400%;
  animation: gradientShift 2s ease infinite;
}

.current-duration {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
  border: 2px solid rgba(102, 126, 234, 0.5);
  color: #ffffff;
  font-weight: 700;
  animation: currentDurationPulse 2s ease-in-out infinite;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.current-duration::before {
  content: '🔥';
  font-size: 0.8rem;
  opacity: 1;
  animation: fireGlow 1.5s ease-in-out infinite;
}

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

@keyframes currentDurationPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
  }
}

.tjdeed-logo {
  background: linear-gradient(135deg, #667eea, #764ba2);
  animation: tjdeedLogoGlow 3s ease-in-out infinite;
}

@keyframes tjdeedLogoGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
  }
}

.timeline-marker:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Experience Card */
.experience-card {
  background: rgba(17, 17, 17, 0.6);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

/* Experience Header Content */
.experience-header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.position {
  font-size: 1.2rem;
  color: #a8b2d1;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.duration {
  font-size: 0.85rem;
  color: #667eea;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
  padding: 0.5rem 1rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(102, 126, 234, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
}

.duration::before {
  content: '📅';
  font-size: 0.8rem;
  opacity: 0.8;
}

.duration:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

/* Company Logo */
.company-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.google-logo {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.microsoft-logo {
  background: linear-gradient(135deg, #00a4ef, #7fba00);
}

.amazon-logo {
  background: linear-gradient(135deg, #ff9900, #232f3e);
}

.company-logo:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Company Link Styling */
.company-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.company-link::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;
}

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

.company-link:hover {
  transform: scale(1.05);
  color: #ffffff;
}

.company-link i {
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.company-link:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Experience Description */
.experience-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #a8b2d1;
  margin-bottom: 2rem;
  text-align: justify;
}

/* Achievements */
.achievements {
  margin-bottom: 2rem;
}

.achievements h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.achievements h4::before {
  content: '🏆';
  font-size: 1rem;
}

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

.achievements li {
  position: relative;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  color: #a8b2d1;
  font-size: 0.95rem;
  line-height: 1.6;
  border-left: 2px solid rgba(102, 126, 234, 0.3);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.achievements li::before {
  content: '✓';
  position: absolute;
  left: -0.5rem;
  top: 0.75rem;
  background: #667eea;
  color: white;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: bold;
}

.achievements li:hover {
  border-left-color: #667eea;
  transform: translateX(5px);
  color: #e2e8f0;
}

/* Tech Stack */
.tech-stack h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-stack h4::before {
  content: '⚡';
  font-size: 1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.3);
  color: #e2e8f0;
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.tech-tag i, .tech-tag img.tech-icon-img {
  font-size: 1.2em;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  display: inline-block;
}

.tech-tag img.tech-icon-img {
  object-fit: contain;
  border-radius: 4px;
  background: transparent;
  margin: 0 2px;
}

.tech-tag:hover {
  background: rgba(102, 126, 234, 0.3);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Custom Tooltip */
.tech-tag[title]:hover::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  background: #222b;
  color: #fff;
  padding: 0.35em 0.8em;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.85em;
  font-weight: 400;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  opacity: 1;
  pointer-events: none;
  z-index: 100;
  transition: opacity 0.2s;
}

.tech-tag[title]::after {
  opacity: 0;
  pointer-events: none;
}

/* Responsive Design for Experience */
@media (max-width: 1200px) {
  .experience-timeline {
    padding-left: 2rem;
  }
  
  .timeline-marker {
    left: -1.75rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .experience {
    padding: 1rem;
  }
  
  .experience-container {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .experience-header h2 {
    font-size: 2rem;
  }
  
  .experience-header p {
    font-size: 1rem;
  }
  
  .experience-timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-marker {
    left: -1.25rem;
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }
  
  .experience-card {
    padding: 1.5rem;
  }
  
  .experience-header-content {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .company-info h3 {
    font-size: 1.5rem;
  }
  
  .position {
    font-size: 1rem;
  }
  
  .company-logo {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  
  .experience-description p {
    font-size: 1rem;
  }
  
  .achievements li {
    font-size: 0.9rem;
  }
  
  .tech-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .experience-header h2 {
    font-size: 1.75rem;
  }
  
  .experience-card {
    padding: 1rem;
  }
  
  .company-info h3 {
    font-size: 1.25rem;
  }
  
  .position {
    font-size: 0.9rem;
  }
  
  .duration {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    gap: 0.3rem;
  }
  
  .duration::before {
    font-size: 0.7rem;
  }
  
  .experience-description p {
    font-size: 0.95rem;
  }
  
  .achievements li {
    font-size: 0.85rem;
    padding-left: 1.25rem;
  }
  
  .tech-tags {
    gap: 0.4rem;
  }
  
  .tech-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  .current-duration {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  
  .current-duration::before {
    font-size: 0.6rem;
  }
}

/* Footer Section */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(22, 22, 22, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(25px);
  border-radius: 32px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.footer-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-info p {
  font-size: 1rem;
  color: #a8b2d1;
  font-weight: 500;
}

.footer-copyright p {
  font-size: 0.9rem;
  color: #a8b2d1;
  font-weight: 500;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.footer-copyright p:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.footer-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
  transition: left 0.5s;
}

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

.footer-link:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-container {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-info h3 {
    font-size: 1.5rem;
  }
  
  .footer-info p {
    font-size: 0.9rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .footer-links {
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-info h3 {
    font-size: 1.25rem;
  }
  
  .footer-info p {
    font-size: 0.85rem;
  }
  
  .footer-copyright p {
    font-size: 0.75rem;
    padding: 0.6rem 1.2rem;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-link {
    width: 120px;
    text-align: center;
  }
}

/* Clock Component Styles */
.clock-container {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
}

.clock {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 2px solid rgba(102, 126, 234, 0.3);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(102, 126, 234, 0.2);
  position: relative;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.5s both;
  padding: 1rem 1.5rem;
}

.clock:hover {
  transform: scale(1.05);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(102, 126, 234, 0.4);
  border-color: rgba(102, 126, 234, 0.5);
}

/* Digital Time */
.digital-time {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: 2px;
  white-space: nowrap;
  text-align: center;
  font-family: 'Courier New', monospace;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Clock Animation */
@keyframes clockGlow {
  0%, 100% {
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.3),
      0 0 20px rgba(102, 126, 234, 0.2);
  }
  50% {
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.3),
      0 0 30px rgba(102, 126, 234, 0.4);
  }
}

.clock {
  animation: clockGlow 3s ease-in-out infinite;
}

/* Responsive Design for Clock */
@media (max-width: 768px) {
  .clock-container {
    top: 1rem;
    right: 1rem;
  }
  
  .clock {
    padding: 0.8rem 1.2rem;
  }
  
  .digital-time {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .clock-container {
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: center;
  }
  
  .clock {
    padding: 0.6rem 1rem;
  }
  
  .digital-time {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}

.shine-effect {
  position: relative;
  color: #fff;
  background: linear-gradient(90deg, #ffd700 20%, #fff 40%, #ffd700 60%, #fff8dc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-move 2s linear infinite, glow-pulse 5.5s ease-in-out infinite;
  font-weight: bold;
}

@keyframes shine-move {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 0 0 8px #ffd700, 0 0 16px #fff8dc, 0 0 24px #ffd700;
  }
  50% {
    text-shadow: 0 0 24px #fff8dc, 0 0 32px #ffd700, 0 0 40px #fff;
  }
}
