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

:root {
  --primary-color: #000000;
  --secondary-color: #1a1a1a;
  --accent-color: #ff6b35;
  --text-primary: #ffffff;
  --text-secondary: #e5e5e5;
  --text-light: #cccccc;
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-dark: #000000;
  --gradient-primary: linear-gradient(135deg, #000000 0%, #333333 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  --gradient-accent: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.8);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.9);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.9);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.9);
  --glow-orange: 0 0 20px rgba(255, 107, 53, 0.5);
  --glow-white: 0 0 20px rgba(255, 255, 255, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow-pulse 2s ease-in-out infinite;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  text-shadow: var(--glow-orange);
}

.nav-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="orange" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="orange" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="orange" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="orange" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="orange" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: typing 4s steps(20) 1s both, glow-text 2s ease-in-out infinite;
}

@keyframes typing {
  from {
    width: 0;
    border-right: 3px solid white;
  }
  to {
    width: 100%;
    border-right: none;
  }
}

@keyframes glow-text {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 107, 53, 0.5);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 1s both;
}

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

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.5s both;
}

.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  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.3), transparent);
  transition: all 0.5s ease;
}

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

.btn-primary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-orange), var(--shadow-xl);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: black;
  transform: translateY(-2px);
  box-shadow: var(--glow-orange);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out;
}

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

.profile-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--accent-color);
  animation: pulse 2s ease-in-out infinite;
  text-align: center;
  box-shadow: var(--glow-orange);
}

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

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  box-shadow: var(--glow-orange);
}

.profile-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}

.profile-info {
  color: white;
}

.profile-info h3 {
  margin-bottom: 0.5rem;
}

/* Section Styles */
.section {
  padding: 5rem 0;
  animation: fadeInUp 0.8s ease-out;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about {
  background: var(--bg-secondary);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow-pulse 2s ease-in-out infinite;
  text-shadow: var(--glow-orange);
}

@keyframes glow-pulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-avatar {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 20px;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 3px solid var(--accent-color);
  box-shadow: var(--glow-orange);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-primary);
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  box-shadow: var(--glow-orange);
  transition: all 0.3s ease;
  animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-orange), var(--shadow-lg);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  animation: countUp 2s ease-out;
  text-shadow: var(--glow-orange);
}

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

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.skill-category {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--accent-color);
  box-shadow: var(--glow-orange);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s ease-out;
}

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

.skill-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.skill-category:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-orange), var(--shadow-xl);
}

.skill-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  animation: bounceIn 1s ease-out 0.5s both;
  border: 2px solid var(--accent-color);
  box-shadow: var(--glow-orange);
}

.skill-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.skill-list {
  list-style: none;
}

.skill-list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
  opacity: 0;
  animation: fadeInLeft 0.5s ease-out forwards;
}

.skill-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.skill-list li:nth-child(2) {
  animation-delay: 0.2s;
}
.skill-list li:nth-child(3) {
  animation-delay: 0.3s;
}
.skill-list li:nth-child(4) {
  animation-delay: 0.4s;
}
.skill-list li:nth-child(5) {
  animation-delay: 0.5s;
}
.skill-list li:nth-child(6) {
  animation-delay: 0.6s;
}

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

.skill-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.8rem;
}

/* Education Section */
.education {
  background: var(--bg-secondary);
}

.education-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.education-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  animation: drawLine 2s ease-out;
}

@keyframes drawLine {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

.education-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
  animation: slideInAlternate 0.8s ease-out;
}

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

.education-item:nth-child(odd) {
  left: 0;
  padding-right: 2rem;
}

.education-item:nth-child(even) {
  left: 50%;
  padding-left: 2rem;
  animation: slideInAlternateRight 0.8s ease-out;
}

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

.education-content {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--accent-color);
  box-shadow: var(--glow-orange);
  position: relative;
  transition: all 0.3s ease;
}

.education-content:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-orange), var(--shadow-lg);
}

.education-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: pulse 2s ease-in-out infinite;
}

.education-item:nth-child(odd) .education-content::before {
  right: -2.5rem;
}

.education-item:nth-child(even) .education-content::before {
  left: -2.5rem;
}

.education-year {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: var(--glow-orange);
}

.education-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.5rem 0;
  color: var(--text-primary);
}

.education-school {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.cv-download {
  text-align: center;
  margin-top: 3rem;
}

.btn-download {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  animation: bounceIn 1s ease-out;
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

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

.project-card {
  background: var(--bg-primary);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--accent-color);
  box-shadow: var(--glow-orange);
  transition: all 0.3s ease;
  position: relative;
  animation: scaleIn 0.8s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--glow-orange), var(--shadow-xl);
}

.project-image {
  height: 200px;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.project-image::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: all 0.5s ease;
}

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

.project-content {
  padding: 2rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.project-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  background: var(--bg-secondary);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--accent-color);
  animation: fadeInUp 0.5s ease-out;
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
}

.project-link:hover {
  color: var(--text-primary);
  transform: translateX(5px);
  text-shadow: var(--glow-orange);
}

/* Contact Section */
.contact {
  background: var(--bg-dark);
  color: white;
}

.contact .section-title {
  color: white;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  animation: slideInLeft 0.8s ease-out;
  box-shadow: var(--glow-orange);
}

.contact-item:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateX(10px);
  box-shadow: var(--glow-orange), var(--shadow-lg);
}

.contact-form {
  background: rgba(255, 107, 53, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent-color);
  animation: slideInRight 0.8s ease-out;
  box-shadow: var(--glow-orange);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: var(--glow-orange);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--gradient-secondary);
  color: white;
  border: 2px solid var(--accent-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

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

/* Footer */
.footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: bounceIn 1s ease-out;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Glow effects */
.glow {
  position: relative;
}

.glow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-secondary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow:hover::before {
  opacity: 0.7;
  animation: glow-animation 1.5s ease-in-out infinite;
}

@keyframes glow-animation {
  0%,
  100% {
    opacity: 0.7;
    box-shadow: var(--glow-orange);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .education-timeline::before {
    left: 20px;
  }

  .education-item {
    width: 100%;
    left: 0 !important;
    padding-left: 3rem !important;
    padding-right: 0 !important;
  }

  .education-content::before {
    left: -2.5rem !important;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Additional CSS-only animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

/* Add breathing animation to profile card */
.profile-card:hover {
  animation: breathe 2s ease-in-out infinite;
}

/* Add rotating animation to skill icons on hover */
.skill-icon:hover {
  animation: rotate 0.5s ease-in-out;
}
