/* ==========================================================================
   CSS Design System & Variables
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Fonts */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-fallback-vendor: 'Tuesday';

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout sizing */
  --nav-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --max-width: 1200px;

  /* Theme Defaults (Dark Mode) */
  --bg-primary: #0a0c10;
  --bg-secondary: #121620;
  --bg-card: #161c2a;
  
  --accent-primary: #8b5cf6; /* Indigo/Purple */
  --accent-primary-rgb: 139, 92, 246;
  --accent-secondary: #06b6d4; /* Cyan */
  --accent-secondary-rgb: 6, 182, 212;
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-color: rgba(0, 0, 0, 0.4);
  --card-shadow: 0 15px 35px -5px var(--shadow-color);
  
  --glass-bg: rgba(18, 22, 32, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glow-color: rgba(139, 92, 246, 0.15);
}

/* Light Theme Variables overrides */
body.light-theme {
  --bg-primary: #f6f8fa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  
  --accent-primary: #6d28d9; /* Deep Purple */
  --accent-primary-rgb: 109, 40, 217;
  --accent-secondary: #0891b2; /* Deep Cyan */
  --accent-secondary-rgb: 8, 145, 178;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --border-color: rgba(15, 23, 42, 0.08);
  --shadow-color: rgba(15, 23, 42, 0.08);
  --card-shadow: 0 15px 35px -5px var(--shadow-color);
  
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(15, 23, 42, 0.08);
  --glow-color: rgba(109, 40, 217, 0.05);
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* ==========================================================================
   Utility Classes & Grid Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0 4rem;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.grid {
  display: grid;
  gap: 2rem;
}

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

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Glassmorphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(var(--accent-primary-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-primary-rgb), 0.4);
}

.btn-secondary {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--border-color);
  transform: translateY(-2px);
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background-color var(--transition-normal), border-bottom-color var(--transition-normal);
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
  animation: logoIntroMobile 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}

.logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 10px rgba(var(--accent-primary-rgb), 0.15));
}

@media (min-width: 1025px) {
  .logo {
    animation: logoIntroDesktop 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

header.scrolled .logo {
  animation: none;
}

@keyframes logoIntroMobile {
  from {
    transform: translate(25px, 0) scale(1.3);
    filter: drop-shadow(0 0 15px rgba(var(--accent-primary-rgb), 0.35));
    opacity: 0;
  }
  to {
    transform: translate(0, 0) scale(1);
    filter: none;
    opacity: 1;
  }
}

@keyframes logoIntroDesktop {
  from {
    transform: translate(280px, 0) scale(1.55);
    filter: drop-shadow(0 0 30px rgba(var(--accent-primary-rgb), 0.5));
    opacity: 0;
  }
  to {
    transform: translate(0, 0) scale(1);
    filter: none;
    opacity: 1;
  }
}

/* Unveil menu and actions animations */
@media (min-width: 1025px) {
  header:not(.scrolled) .nav-menu {
    animation: navMenuReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
  }
}

header:not(.scrolled) .nav-actions {
  animation: navMenuReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

@keyframes navMenuReveal {
  from {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: none;
  }
}

.logo-name {
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  gap: 0.35rem;
}

.logo-name span {
  font-weight: 300;
}

.logo-subtitle {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 1.2rem;
  margin-top: 0.15rem;
  white-space: nowrap;
}



.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background: var(--border-color);
  color: var(--accent-primary);
  transform: rotate(15deg);
}

.theme-toggle .sun-icon {
  display: none;
}

body.light-theme .theme-toggle .moon-icon {
  display: none;
}

body.light-theme .theme-toggle .sun-icon {
  display: block;
}

/* Pulse animation for the menu on load to attract attention */
@keyframes menu-attention {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
    color: var(--accent-primary);
  }
}

.hamburger-container {
  display: none;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  animation: menu-attention 3s ease-in-out infinite;
  animation-delay: 2.5s;
}

.hamburger-container:hover,
.hamburger-container.open {
  animation: none;
}

.hamburger-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.hamburger-container:hover .hamburger-label {
  color: var(--accent-primary);
}

.hamburger-container.open .hamburger-label {
  color: var(--accent-primary);
  transform: translateX(-2px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform var(--transition-fast), opacity var(--transition-fast), background-color var(--transition-fast);
}

@media (max-width: 1024px) {
  .hamburger-container {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 250px;
    height: calc(100vh - var(--nav-height));
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 3rem 2rem;
    align-items: flex-start;
    gap: 1.5rem;
    transition: right var(--transition-normal);
    z-index: 999;
  }
  .nav-menu.open {
    right: 0;
  }
  .hamburger-container.open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-container.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-container.open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-color) 0%, rgba(0, 0, 0, 0) 70%);
  top: 15%;
  right: 10%;
  z-index: -1;
  filter: blur(40px);
  animation: pulse-glow 10s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(-20px, 30px);
  }
}

.hero-content {
  max-width: 650px;
}

.hero-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(var(--accent-primary-rgb), 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  min-height: 3.6rem; /* Reserves space for 2 lines of text on desktop to prevent layout shifting */
}

@media (max-width: 768px) {
  .hero-description {
    min-height: 5.4rem; /* Reserves space for 3 lines of text on mobile to prevent layout shifting */
  }
}

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

/* ==========================================================================
   About Section
   ========================================================================== */
.about-card {
  padding: 2.5rem;
  height: 100%;
}

.about-details p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: left;
  line-height: 1.7;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.skill-tag {
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.skill-tag:hover {
  background: rgba(var(--accent-primary-rgb), 0.05);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

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

@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform var(--transition-normal), border-color var(--transition-fast), box-shadow var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-primary-rgb), 0.3);
  box-shadow: 0 10px 25px rgba(var(--accent-primary-rgb), 0.08);
}

.stat-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
  opacity: 1;
}

.stat-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
  pointer-events: none;
}

/* Hover active state */
.stat-card:hover .stat-default {
  transform: scale(0.9) translateY(-10px);
  opacity: 0;
}

.stat-card:hover .stat-hover {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Card 1: Experience - Company Logos */
.stat-companies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  max-width: 95%;
}

.stat-company-logo {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
  padding: 4px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-company-logo:hover {
  transform: scale(1.15);
}

/* Card 2: TOEIC Explanation */
.stat-explain {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
  padding: 0 0.5rem;
}

/* Card 3: Flags */
.stat-flags {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.stat-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.flag-icon {
  width: 46px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.light-theme .flag-icon {
  border-color: rgba(0, 0, 0, 0.06);
}

.stat-flag-item:hover .flag-icon {
  transform: scale(1.25);
}

.flag-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Card 4: Master's Degree Info */
.stat-degree-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-usmb-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  padding: 4px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-usmb-logo {
  transform: scale(1.08);
}

.stat-degree-title {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-secondary);
  text-align: center;
}

/* Stat hover custom links styling */
.stat-company-link {
  display: inline-flex;
  text-decoration: none;
  outline: none;
}

.stat-degree-link {
  text-decoration: none;
  color: inherit;
  display: block;
  outline: none;
  width: 100%;
}

.stat-inline-link {
  color: var(--accent-primary);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 0.35rem;
  transition: color var(--transition-fast);
  display: inline-block;
}

.stat-inline-link:hover {
  color: var(--accent-secondary);
}

/* About Section Collapsible Soft Skills Dropdown & Pipeline Styling */
.soft-skills-card {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: visible !important;
}

.soft-skills-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Rotate Chevron on Hover */
.soft-skills-card:hover h3 .chevron-icon {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

/* Collapsible Content Wrapper */
.soft-skills-content-wrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
              opacity 0.4s ease, 
              padding-top 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
              padding-bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding-top: 0;
  padding-bottom: 0;
}

.soft-skills-card:hover .soft-skills-content-wrapper {
  max-height: 700px; /* Accommodates mobile vertical stacking height */
  opacity: 1;
  padding-top: 2.25rem;
  padding-bottom: 0.75rem;
  overflow: visible;
}

/* Pipeline Flow Layout */
.soft-skills-pipeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
}

/* Vertical dashed track on mobile */
.soft-skills-pipeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  border-left: 2px dashed rgba(124, 58, 237, 0.2);
  transform: translateX(-50%);
  pointer-events: none;
  transition: border-color var(--transition-normal);
}

.soft-skills-card:hover .soft-skills-pipeline::before {
  border-left-color: rgba(124, 58, 237, 0.35);
}

/* Desktop Horizontal Pipeline layout overrides */
@media (min-width: 992px) {
  .soft-skills-pipeline {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 0.5rem 1rem;
  }
  
  .soft-skills-pipeline::before {
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    top: 50%;
    bottom: auto;
    border-left: none;
    border-top: 2px dashed rgba(124, 58, 237, 0.2);
    transform: translateY(-50%);
  }

  .soft-skills-card:hover .soft-skills-pipeline::before {
    border-top-color: rgba(124, 58, 237, 0.35);
  }
}

/* Node Elements */
.soft-skill-node {
  position: relative;
  z-index: 10;
}

.node-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  white-space: nowrap;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

/* Sibling focus blur */
.soft-skills-pipeline:hover .soft-skill-node {
  filter: blur(1.5px) opacity(0.45);
}

.soft-skills-pipeline .soft-skill-node:hover {
  filter: none;
  opacity: 1;
}

.soft-skill-node:hover .node-label {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--accent-secondary);
  box-shadow: 0 6px 15px rgba(var(--accent-primary-rgb), 0.15);
  color: var(--accent-secondary);
}

/* Tooltip placements centered above */
.soft-tooltip {
  width: 250px;
  position: absolute;
  bottom: 145%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  white-space: normal;
  text-align: left;
  line-height: 1.45;
  padding: 0.75rem;
  font-size: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  z-index: 100;
}

.soft-skill-node:hover .soft-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mobile tooltip adjustments */
@media (max-width: 991px) {
  .soft-tooltip {
    bottom: 135%;
  }
}

/* Edge safety adjustments on desktop */
@media (min-width: 992px) {
  .soft-skills-pipeline .soft-skill-node:first-child .soft-tooltip {
    left: 0;
    transform: translateX(0) translateY(10px);
  }
  .soft-skills-pipeline .soft-skill-node:first-child:hover .soft-tooltip {
    transform: translateX(0) translateY(0);
  }

  .soft-skills-pipeline .soft-skill-node:last-child .soft-tooltip {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(10px);
  }
  .soft-skills-pipeline .soft-skill-node:last-child:hover .soft-tooltip {
    transform: translateX(0) translateY(0);
  }
}

/* ==========================================================================
   Timeline / Experience Section
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--border-color);
}

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

.timeline-dot {
  position: absolute;
  left: 20px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 4px solid var(--accent-primary);
  z-index: 1;
  transition: background-color var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
  background: var(--accent-secondary);
}

.timeline-content {
  padding: 2rem;
  cursor: pointer;
  transition: background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}

.timeline-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
              opacity 0.4s ease, 
              margin-top 0.4s ease;
}

.timeline-content:hover .timeline-body {
  max-height: 1200px; /* Increased headroom to prevent text clipping on mobile viewports */
  opacity: 1;
  margin-top: 1.25rem;
}

.timeline-chevron-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.25rem;
  flex-shrink: 0;
}

.timeline-expand-chevron {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s ease;
}

.timeline-content:hover .timeline-expand-chevron {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.timeline-content:not(:hover) .timeline-expand-chevron {
  animation: chevronBounce 2s infinite;
}

.timeline-date {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.timeline-date::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--accent-primary);
  font-size: 0.8rem;
  opacity: 0.8;
}

.timeline-role {
  font-size: 1.25rem;
  font-weight: 700;
}

.timeline-company {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.timeline-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.timeline-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
  padding: 4px;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast);
}

.timeline-item:hover .timeline-logo {
  transform: scale(1.05);
}

.timeline-meta-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.timeline-body {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.timeline-body ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.timeline-body li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
  box-shadow: 0 4px 12px rgba(var(--accent-primary-rgb), 0.2);
}

.portfolio-grid {
  min-height: 200px;
}

.portfolio-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-primary-rgb), 0.3);
  box-shadow: 0 20px 40px -15px var(--shadow-color);
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.portfolio-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-secondary);
  letter-spacing: 0.5px;
}

.portfolio-links {
  display: flex;
  gap: 0.75rem;
}

.portfolio-icon-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.portfolio-icon-link:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(var(--accent-primary-rgb), 0.05);
}

.portfolio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.portfolio-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-primary-rgb), 0.3);
  box-shadow: 0 20px 40px -15px var(--shadow-color);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.blog-card:hover h3 {
  color: var(--accent-primary);
}

.blog-summary {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.blog-readmore {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition-fast);
}

.blog-card:hover .blog-readmore {
  gap: 0.5rem;
}

/* ==========================================================================
   Blog Reader Modal Overlay
   ========================================================================== */
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.blog-modal.open {
  opacity: 1;
  pointer-events: all;
}

.blog-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.blog-modal-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 2001;
  padding: 3rem 2.5rem;
  transform: translateY(30px) scale(0.95);
  transition: transform var(--transition-normal);
}

.blog-modal.open .blog-modal-container {
  transform: translateY(0) scale(1);
}

.blog-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.blog-modal-close:hover {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
}

.blog-modal-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.blog-modal-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.blog-modal-title {
  font-size: 2.2rem;
  line-height: 1.2;
}

.blog-modal-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-modal-content p {
  margin-bottom: 1.5rem;
}

.blog-modal-content h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

.blog-modal-content blockquote {
  border-left: 4px solid var(--accent-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-primary);
}

.blog-modal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-type: square;
}

.blog-modal-content li {
  margin-bottom: 0.5rem;
}

.blog-modal-content code {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1.8fr;
  }
}

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

.contact-method-card {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(var(--accent-primary-rgb), 0.08);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.15);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details {
  flex-grow: 1;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.contact-copy-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.contact-copy-btn:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  background: rgba(var(--accent-primary-rgb), 0.03);
}

.contact-copy-btn.copied {
  color: #10b981; /* Green success */
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}

.copied-toast {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #10b981;
  color: white;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(5px);
  transition: all var(--transition-fast);
}

.copied-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-form-card {
  padding: 2.5rem;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.15);
  outline: none;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
}

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

.footer-link {
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-primary);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social-icon:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  background: rgba(var(--accent-primary-rgb), 0.03);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  width: 100%;
  max-width: 600px;
  margin-top: 1rem;
}

/* ==========================================================================
   Booking Section Styles
   ========================================================================== */
.booking-card {
  position: relative;
  width: 100%;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  padding: 1rem;
}

#cal-embed-container {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: none;
}

/* Calendar Loading Skeleton */
.booking-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 5;
  transition: opacity var(--transition-slow);
}

.booking-skeleton.hide {
  opacity: 0;
  pointer-events: none;
}

.skeleton-header {
  width: 35%;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(90deg, var(--bg-primary) 25%, var(--border-color) 50%, var(--bg-primary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.skeleton-day {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--bg-primary) 25%, var(--border-color) 50%, var(--bg-primary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-day:nth-child(even) {
  animation-delay: 0.1s;
}

.skeleton-day:nth-child(3n) {
  animation-delay: 0.2s;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 600px) {
  .booking-skeleton {
    padding: 1.5rem;
  }
  .skeleton-grid {
    gap: 0.5rem;
  }
}

/* ==========================================================================
   Language Selector Styles
   ========================================================================== */
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.01);
  margin-right: 0.5rem;
}

.lang-btn {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--accent-primary);
}

.lang-btn.active {
  background: var(--accent-primary);
  color: #ffffff;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: flex;
}

@media (min-width: 1025px) {
  .desktop-only {
    display: inline-flex;
  }
  .mobile-only {
    display: none;
  }
}

/* ==========================================================================
   Hero Image & Grid Layout Styles
   ========================================================================== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-image-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  padding: 0; /* Removed the padding to close the gap entirely */
  background: var(--glass-bg);
  border: 3px solid transparent; /* Transparent border in dark mode */
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal), 
              border-color 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

/* Static dark backing circle to prevent outline pixelation in dark mode */
.hero-image-wrapper:hover {
  transform: translateY(-8px) rotateY(10deg);
  box-shadow: 0 25px 50px -12px rgba(var(--accent-primary-rgb), 0.3);
}

.light-theme .hero-image-wrapper {
  border-color: var(--glass-border); /* Visible border in light mode */
}

.hero-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.hero-image-border {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  /* SVG with inline style to animate 9 separate segments (3 purple, 3 indigo, 3 sky blue) traveling super slowly back & forth along a faint track */
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3e%3cstyle%3e@keyframes draw %7b from %7b stroke-dashoffset: 302; %7d to %7b stroke-dashoffset: 0; %7d %7d %23packet1 %7b animation: draw 75s ease-in-out infinite alternate; transform-origin: center; %7d %23packet2 %7b animation: draw 75s ease-in-out infinite alternate-reverse; animation-delay: -25s; transform-origin: center; %7d %23packet3 %7b animation: draw 75s ease-in-out infinite alternate; animation-delay: -50s; transform-origin: center; %7d%3c/style%3e%3ccircle cx='50' cy='50' r='48' fill='none' stroke='%237c3aed' stroke-width='0.5' stroke-opacity='0.03'/%3e%3ccircle cx='50' cy='50' r='48' fill='none' stroke='%237c3aed' stroke-width='0.7' stroke-opacity='0.45' stroke-dasharray='75%2c 25.6' stroke-linecap='round' id='packet1'/%3e%3ccircle cx='50' cy='50' r='48' fill='none' stroke='%23818cf8' stroke-width='0.7' stroke-opacity='0.4' stroke-dasharray='75%2c 25.6' stroke-linecap='round' id='packet2'/%3e%3ccircle cx='50' cy='50' r='48' fill='none' stroke='%2338bdf8' stroke-width='0.7' stroke-opacity='0.35' stroke-dasharray='75%2c 25.6' stroke-linecap='round' id='packet3'/%3e%3c/svg%3e");
  pointer-events: none;
  z-index: 3; /* Render on top of image wrapper to frame it directly! */
  filter: blur(0.8px) drop-shadow(0 2px 4px rgba(124, 58, 237, 0.08)) drop-shadow(0 2px 4px rgba(56, 189, 248, 0.05));
  transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.85;
}

.light-theme .hero-image-border {
  filter: blur(0.8px) drop-shadow(0 2px 4px rgba(124, 58, 237, 0.04)) drop-shadow(0 2px 4px rgba(56, 189, 248, 0.03));
  opacity: 0.65;
}


@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
  }
  .hero-image-wrapper {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 991px) {
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-grid {
    gap: 2.5rem;
  }
  .hero-image-container {
    order: -1;
  }
}

@media (max-width: 576px) {
  .hero-image-wrapper {
    width: 220px;
    height: 220px;
  }
  .hero-description {
    min-height: auto;
  }
}

/* ==========================================================================
   Separated Timeline Columns (Experience vs Education)
   ========================================================================== */
.timeline-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  width: 100%;
  align-items: start;
  margin-top: 1.5rem;
}

.timeline-column {
  width: 100%;
}

.timeline-column .timeline {
  max-width: 100%;
  margin: 0;
  padding: 1.5rem 0;
}

.timeline-column-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-family: var(--font-heading);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.timeline-column-title i {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

@media (min-width: 992px) {
  .timeline-columns {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ==========================================================================
   School Link Styles
   ========================================================================== */
.school-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.school-link:hover {
  color: var(--accent-primary);
}

.school-link-icon {
  font-size: 0.75rem;
  opacity: 0.6;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.school-link:hover .school-link-icon {
  transform: translate(1.5px, -1.5px);
  opacity: 1;
}

/* ==========================================================================
   Blog Commenting System
   ========================================================================== */
.blog-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2.5rem 0 2rem;
}

.blog-comments-section {
  padding-top: 0.5rem;
}

.comments-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  max-height: 450px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.comment-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
  animation: commentFadeIn 0.3s ease-out;
}

.comment-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(var(--accent-primary-rgb), 0.3);
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  flex-shrink: 0;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.comment-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.comment-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.comment-author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.comment-delete-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 0.85rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-delete-btn:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.comment-pseudo {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.comment-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.comment-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  white-space: pre-wrap;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  background: rgba(var(--accent-primary-rgb), 0.02);
  border: 1px dashed var(--border-color);
  margin-top: 2rem;
}

.comment-form h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.comment-form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.comment-pseudo-group {
  flex: 1;
  max-width: 100%;
}

.comment-submit-btn {
  align-self: flex-start;
  border: none;
}

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

/* ==========================================================================
   Tech Stack Section Styles
   ========================================================================== */
.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 600px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-grid .tech-card:last-child {
    grid-column: span 2;
    justify-self: center;
    width: 100%;
    max-width: calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .tech-grid .tech-card:nth-child(1) {
    grid-column: span 2;
  }
  .tech-grid .tech-card:nth-child(2) {
    grid-column: span 2;
  }
  .tech-grid .tech-card:nth-child(3) {
    grid-column: span 2;
  }
  .tech-grid .tech-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .tech-grid .tech-card:nth-child(5) {
    grid-column: 4 / span 2;
    justify-self: stretch;
    max-width: none;
  }
}

.tech-card {
  padding: 1.75rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-primary-rgb), 0.25);
  box-shadow: 0 12px 40px rgba(var(--accent-primary-rgb), 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.light-theme .tech-card:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px rgba(var(--accent-primary-rgb), 0.06);
}

.tech-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
}

.tech-card-title i {
  transition: transform 0.3s ease;
}

.tech-card:hover .tech-card-title i {
  transform: rotate(10deg) scale(1.15);
}

.light-theme .tech-card-title {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.75rem;
  max-height: 53px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: -6px -8px 0 -8px;
  padding: 6px 8px;
}

/* Bottom fade effect when collapsed */
.tech-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to top, var(--glass-bg), transparent);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.light-theme .tech-list::after {
  background: linear-gradient(to top, #ffffff, transparent);
}

.tech-card:hover .tech-list {
  max-height: 250px;
  overflow-y: auto;
}

.tech-card:hover .tech-list::after {
  opacity: 0;
}

/* Custom thin scrollbar */
.tech-list::-webkit-scrollbar {
  width: 4px;
}

.tech-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.01);
  border-radius: 10px;
}

.tech-list::-webkit-scrollbar-thumb {
  background: rgba(var(--accent-primary-rgb), 0.25);
  border-radius: 10px;
}

.tech-list::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--accent-primary-rgb), 0.5);
}

.tech-item, a.tech-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.light-theme .tech-item {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.03);
}

.tech-item:hover {
  position: relative;
  z-index: 2; /* Put it on top of other elements to prevent overlay cutting */
  transform: translateY(-3px) scale(1.03);
  background: rgba(var(--accent-primary-rgb), 0.08);
  border-color: rgba(var(--accent-primary-rgb), 0.3);
  color: var(--accent-primary);
  box-shadow: 0 6px 15px rgba(var(--accent-primary-rgb), 0.12);
}

.tech-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: grayscale(35%) opacity(0.85);
  transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
  filter: grayscale(0%) opacity(1) scale(1.15);
}


/* Tech Card Footer styles */
.tech-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.light-theme .tech-card-footer {
  border-top-color: rgba(0, 0, 0, 0.04);
}

.tech-card:hover .tech-card-footer {
  border-top-color: rgba(var(--accent-primary-rgb), 0.15);
  color: var(--accent-primary);
}

.chevron-icon {
  font-size: 0.75rem;
  transition: transform 0.4s ease;
}

.tech-card:hover .chevron-icon {
  transform: rotate(180deg);
}

/* Subtle bounce animation for the chevron when collapsed */
@keyframes chevronBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(3px);
  }
  60% {
    transform: translateY(1.5px);
  }
}

.tech-card:not(:hover) .chevron-icon {
  animation: chevronBounce 2s infinite;
}

/* Subtitle smooth magnifying glass hover effect */
.roles-subtitle {
  position: relative;
  display: inline-block;
  transform-origin: center;
  transition: filter 0.3s ease, letter-spacing 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: none; /* Hide default cursor to show our actual lens */
}

.roles-subtitle:hover {
  filter: brightness(1.1);
  letter-spacing: 0.015em;
}

.magnifier-lens {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
}

.magnifier-lens.active {
  opacity: 1;
  transform: scale(1);
}

.magnifier-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #9ca3af;
  background: var(--bg-primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 2;
}

/* Shiny reflection glass effect overlay inside the glass */
.magnifier-glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 50%);
  pointer-events: none;
  z-index: 3;
}

.magnifier-text {
  position: absolute;
  pointer-events: none;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 1.1rem;
}

.magnifier-handle {
  position: absolute;
  width: 8px;
  height: 40px;
  background: linear-gradient(to bottom, #9ca3af, #4b5563 15%, #1f2937 20%, #111827 80%, #9ca3af);
  border-radius: 4px;
  box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.4);
  left: 62px;
  top: 62px;
  transform-origin: top center;
  transform: rotate(-45deg);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   Target Roles (Word Cloud) Styles
   ========================================================================== */
.word-cloud-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2rem;
  padding: 3rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  min-height: 200px;
}

.word-cloud-bubble {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  color: var(--text-secondary);
  font-weight: 600;
  text-align: center;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  user-select: none;
  position: relative;
}

.light-theme .word-cloud-bubble {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--text-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Individual bubble style variables (sizes and subtle primary/secondary brand tints) */
.bubble-1 {
  font-size: 1.35rem;
  padding: 0.9rem 1.7rem;
  animation: float1 7s ease-in-out infinite;
  background: rgba(var(--accent-primary-rgb), 0.04);
  border-color: rgba(var(--accent-primary-rgb), 0.15);
}

.bubble-2 {
  font-size: 1.15rem;
  padding: 0.75rem 1.4rem;
  animation: float2 9s ease-in-out infinite;
}

.bubble-3 {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  animation: float3 8s ease-in-out infinite;
  background: rgba(var(--accent-primary-rgb), 0.08);
  border-color: rgba(var(--accent-primary-rgb), 0.35);
  color: var(--text-primary);
  border-width: 2px;
}

.bubble-4 {
  font-size: 1.08rem;
  padding: 0.7rem 1.3rem;
  animation: float1 6s ease-in-out infinite 0.5s;
}

.bubble-5 {
  font-size: 1.4rem;
  padding: 0.95rem 1.8rem;
  animation: float2 7.5s ease-in-out infinite 1s;
  background: rgba(var(--accent-secondary-rgb), 0.04);
  border-color: rgba(var(--accent-secondary-rgb), 0.15);
}

.bubble-6 {
  font-size: 1.25rem;
  padding: 0.8rem 1.55rem;
  animation: float3 8.5s ease-in-out infinite 0.5s;
}

/* Sibling blur effect on cloud hover */
.word-cloud-container:hover .word-cloud-bubble {
  filter: blur(2px) opacity(0.35);
}

.word-cloud-container:hover .word-cloud-bubble:hover {
  filter: none;
  opacity: 1;
  z-index: 10;
}

/* Hover effects */
.word-cloud-bubble:hover {
  transform: scale(1.1) translateY(-6px) !important;
  color: var(--accent-primary);
  background: rgba(var(--accent-primary-rgb), 0.08);
  border-color: rgba(var(--accent-primary-rgb), 0.45);
  box-shadow: 0 10px 25px rgba(var(--accent-primary-rgb), 0.15);
  animation-play-state: paused;
}

.bubble-5:hover {
  color: var(--accent-secondary);
  background: rgba(var(--accent-secondary-rgb), 0.08);
  border-color: rgba(var(--accent-secondary-rgb), 0.45);
  box-shadow: 0 10px 25px rgba(var(--accent-secondary-rgb), 0.15);
}

.light-theme .word-cloud-bubble:hover {
  background: #ffffff;
}

/* Floating animation keyframes */
@keyframes float1 {
  0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
  50% { transform: translate(-3px, -6px) rotate(0.4deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
  50% { transform: translate(4px, -4px) rotate(-0.5deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
  50% { transform: translate(-2px, -8px) rotate(0.3deg); }
}

/* Tooltip popover styling for Target Roles details */
.role-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translate(-50%, 10px);
  width: 260px;
  background: rgba(15, 15, 22, 0.96);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.35);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  padding: 0.65rem 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 100;
  text-align: center;
}

.light-theme .role-tooltip {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(var(--accent-primary-rgb), 0.25);
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Tooltip caret arrow */
.role-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(15, 15, 22, 0.96) transparent transparent transparent;
}

.light-theme .role-tooltip::after {
  border-color: rgba(255, 255, 255, 0.98) transparent transparent transparent;
}

/* Trigger tooltip open on bubble hover */
.word-cloud-bubble:hover .role-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

/* Mobile responsive alignment */
@media (max-width: 600px) {
  .word-cloud-container {
    gap: 0.9rem;
    padding: 1.5rem 0.5rem;
  }
  .bubble-3 {
    font-size: 1.25rem;
    padding: 0.8rem 1.5rem;
  }
  .bubble-1, .bubble-5 {
    font-size: 1.15rem;
    padding: 0.75rem 1.4rem;
  }
  .bubble-2, .bubble-6 {
    font-size: 1.05rem;
    padding: 0.65rem 1.2rem;
  }
  .bubble-4 {
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
  }
}

/* Typing Cursor blink effect */
.typing-cursor {
  font-weight: 300;
  color: var(--accent-primary);
  margin-left: 2px;
  animation: cursorBlink 0.8s step-end infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes cursorBlink {
  from, to { color: transparent; }
  50% { color: var(--accent-primary); }
}

/* ==========================================================================
   Eco-Impact Carbon Footprint Widget
   ========================================================================== */
.eco-widget {
  margin: 1.5rem auto 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.eco-widget:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-primary);
}

.eco-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

.eco-icon {
  color: #10b981; /* Emerald/Green color */
  animation: ecoPulse 2s infinite ease-in-out;
}

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

.eco-details {
  margin-top: 0.75rem;
  border-top: 1px dashed var(--border-color);
  padding-top: 0.75rem;
}

.eco-compare-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.eco-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.eco-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all var(--transition-fast);
}

.eco-btn:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(124, 58, 237, 0.05); /* very light purple tint */
}

.eco-btn.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff !important;
}

.eco-comparison-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sleek Blog Show More/Less Link */
.blog-sleek-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.4s ease;
  outline: none;
}

.blog-sleek-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-sleek-link:hover::after {
  width: 100%;
}

.blog-sleek-link i {
  font-size: 0.95rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: var(--accent-primary);
  transform: rotate(var(--arrow-rotation, 0deg)) translateX(0);
}

.blog-sleek-link:hover i {
  transform: rotate(var(--arrow-rotation, 0deg)) translateX(6px);
}
