:root {
  --color-bg: #0f172a;
  --color-surface: #1e293b;
  --color-primary: #38bdf8;
  --color-secondary: #818cf8;
  --color-accent: #22d3ee;
  --color-text: #f8fafc;
}

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

html {
  overflow-x: hidden;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 2rem;
}

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

.hero-gradient {
  background: 
    radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(129, 140, 248, 0.12) 0%, transparent 40%),
    var(--color-bg);
  min-height: 100vh;
}

.animated-gradient {
  background: linear-gradient(-45deg, #0f172a, #1e1b4b, #0f172a, #1e293b);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

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

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(56, 189, 248, 0.3); }
  50% { box-shadow: 0 0 40px rgba(56, 189, 248, 0.6); }
}

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

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

.float-animation {
  animation: float 4s ease-in-out infinite;
}

.glow-animation {
  animation: pulse-glow 3s ease-in-out infinite;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.z-1 {
  z-index: 1;
}

.position-relative {
  position: relative;
}

.position-fixed {
  position: fixed;
}

.overflow-hidden {
  overflow: hidden;
}

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

.text-medium-emphasis {
  opacity: 0.75;
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-accent {
  color: var(--color-accent);
}

.text-success {
  color: #22c55e;
}

.text-warning {
  color: #f59e0b;
}

.text-info {
  color: #0ea5e9;
}

.text-error {
  color: #ef4444;
}

.font-weight-bold {
  font-weight: 700;
}

.font-weight-black {
  font-weight: 800;
}

.font-weight-medium {
  font-weight: 500;
}

.bg-success { background: #22c55e !important; }
.bg-warning { background: #f59e0b !important; }
.bg-info { background: #0ea5e9 !important; }
.bg-error { background: #ef4444 !important; }
.bg-primary { background: var(--color-primary) !important; }
.bg-secondary { background: var(--color-secondary) !important; }
.bg-accent { background: var(--color-accent) !important; }

.text-caption {
  font-size: 0.75rem;
}

/* App Bar */
.app-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.app-bar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.app-bar-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--color-primary);
  background: rgba(56, 189, 248, 0.1);
}

.nav-btn {
  background: var(--color-primary);
  color: var(--color-bg);
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}

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

.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.typewriter-container {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  min-height: 2em;
}

.cursor {
  animation: blink 1s infinite;
}

.hero-description {
  font-size: 1.125rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

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

.btn-outline:hover {
  background: rgba(56, 189, 248, 0.1);
}

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

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(56, 189, 248, 0.1);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.25rem;
}

.social-link:hover {
  transform: translateY(-3px);
  background: rgba(56, 189, 248, 0.2);
}

.profile-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.profile-image {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(56, 189, 248, 0.3);
}

.tech-badge {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.tech-badge:nth-child(2) {
  top: 10%;
  left: 0;
  animation-delay: -0.5s;
}

.tech-badge:nth-child(3) {
  top: 50%;
  right: 0;
  color: var(--color-secondary);
  animation-delay: -1s;
}

.tech-badge:nth-child(4) {
  bottom: 10%;
  left: 5%;
  color: var(--color-accent);
  animation-delay: -1.5s;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--color-primary);
  font-size: 2rem;
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* About */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  max-width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(56, 189, 248, 0.2);
}

.experience-card {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.experience-card .number {
  font-size: 2rem;
  font-weight: 800;
}

.about-card {
  padding: 2.5rem;
  border-radius: 20px;
}

.about-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-card p {
  margin-bottom: 1rem;
  opacity: 0.8;
  line-height: 1.8;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--color-primary);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.highlight-item h4 {
  margin-bottom: 0.25rem;
}

.highlight-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* Experience */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}

.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 2rem;
}

.timeline-dot {
  position: absolute;
  left: 8px;
  top: 24px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border: 4px solid var(--color-bg);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.job-card {
  padding: 2rem;
  border-radius: 20px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.job-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--color-primary);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.job-title-group h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.job-company {
  color: var(--color-primary);
  font-weight: 500;
}

.job-meta {
  text-align: right;
}

.badge-chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.badge-primary {
  background: var(--color-primary);
  color: var(--color-bg);
}

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

.badge-accent {
  background: var(--color-accent);
  color: var(--color-bg);
}

.job-location {
  font-size: 0.9rem;
  opacity: 0.7;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.25rem 0;
}

.job-tasks {
  list-style: none;
  margin-bottom: 1.25rem;
}

.job-tasks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
  line-height: 1.6;
}

.job-tasks li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

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

.tech-tag {
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

/* Skills */
.skills-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.skills-card {
  padding: 2rem;
  border-radius: 20px;
}

.skills-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.skills-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-chip {
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  color: white;
}

.skill-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.competencies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.competency-item {
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.competency-item:hover {
  background: rgba(56, 189, 248, 0.08);
  transform: translateX(5px);
}

.competency-item .competency-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.competency-item i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.competency-item p {
  font-size: 0.9rem;
  opacity: 0.75;
}

.progress-card {
  padding: 2.5rem;
  border-radius: 20px;
}

.progress-card h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.progress-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.progress-item {
  margin-bottom: 0.5rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.progress-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contact */
.contact-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.contact-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-item {
  display: block;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.3);
}

.contact-item i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.contact-item .label {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-item .value {
  font-size: 0.9rem;
  opacity: 0.7;
}

.contact-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

/* Footer */
.footer {
  background: var(--color-surface);
  padding: 3rem 0;
}

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

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
}

.footer p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(56, 189, 248, 0.1);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(56, 189, 248, 0.2);
}

/* Back to top */
.back-to-top {
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--color-surface);
  z-index: 1001;
  padding: 6rem 2rem 2rem;
  transition: right 0.3s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  color: var(--color-text);
  text-decoration: none;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover,
.mobile-nav a.primary {
  color: var(--color-primary);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
}

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

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-surface);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .about-row,
  .skills-row {
    grid-template-columns: 1fr;
  }
  
  .about-image-wrapper {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-section {
    padding-top: 100px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons,
  .social-links {
    justify-content: center;
  }
  
  .profile-image {
    width: 280px;
    height: 280px;
  }
  
  .tech-badge:nth-child(2) {
    left: 5%;
  }
  
  .tech-badge:nth-child(3) {
    right: 5%;
  }
  
  .tech-badge:nth-child(4) {
    left: 10%;
  }
  
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .mobile-nav,
  .mobile-overlay {
    display: block;
  }
  
  .highlights-grid,
  .competencies-grid,
  .progress-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    border-right: none;
    padding: 0.5rem 1rem;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .about-card h3,
  .contact-card h3 {
    font-size: 1.5rem;
  }
  
  .job-header {
    flex-direction: column;
  }
  
  .job-meta {
    text-align: left;
  }
  
  .timeline-line,
  .timeline-dot {
    display: none;
  }
  
  .timeline-item {
    padding-left: 0;
  }
  
  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .typewriter-container {
    font-size: 1.1rem;
  }
  
  .btn {
    width: 100%;
    justify-center: center;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}

/* Personal Icon Styles */
.personal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.personal-icon--small {
  width: 24px;
  height: 24px;
}

.personal-icon--medium {
  width: 32px;
  height: 32px;
}

.personal-icon--large {
  width: 48px;
  height: 48px;
}

.personal-icon__background {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.2); /* Primary color with opacity */
}

.personal-icon__letters {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: 0.75rem;
  color: white;
  line-height: 1;
}

/* Hover effect */
.personal-icon:hover .personal-icon__background {
  background: rgba(56, 189, 248, 0.3);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Color variations */
.personal-icon--primary .personal-icon__background {
  background: rgba(56, 189, 248, 0.2);
}
.personal-icon--secondary .personal-icon__background {
  background: rgba(129, 140, 248, 0.2);
}
.personal-icon--accent .personal-icon__background {
  background: rgba(34, 211, 238, 0.2);
}
.personal-icon--success .personal-icon__background {
  background: rgba(34, 197, 94, 0.2);
}
.personal-icon--warning .personal-icon__background {
  background: rgba(245, 158, 11, 0.2);
}
.personal-icon--error .personal-icon__background {
  background: rgba(239, 68, 68, 0.2);
}
.personal-icon--info .personal-icon__background {
  background: rgba(14, 165, 233, 0.2);
}

/* Text color variations */
.personal-icon--primary .personal-icon__letters {
  color: #0f172a; /* dark background for contrast */
}
.personal-icon--secondary .personal-icon__letters {
  color: #0f172a;
}
.personal-icon--accent .personal-icon__letters {
  color: #0f172a;
}
.personal-icon--success .personal-icon__letters {
  color: #0f172a;
}
.personal-icon--warning .personal-icon__letters {
  color: #0f172a;
}
.personal-icon--error .personal-icon__letters {
  color: #0f172a;
}
.personal-icon--info .personal-icon__letters {
  color: #0f172a;
}
.personal-icon--white .personal-icon__background {
  background: transparent;
}
.personal-icon--white .personal-icon__letters {
  color: white;
}