/* ===== CSS Variables - White Light Blue Fresh Theme ===== */
:root {
  /* Light Background */
  --color-bg: #f8fafc;
  --color-bg-secondary: #f1f5f9;
  --color-bg-glass: rgba(255, 255, 255, 0.7);
  --color-bg-glass-dark: rgba(255, 255, 255, 0.9);

  /* Primary Colors - Light Blue/Cyan */
  --color-primary: #0ea5e9;
  --color-primary-light: #38bdf8;
  --color-primary-dark: #0284c7;

  /* Secondary - Soft Purple */
  --color-secondary: #a78bfa;
  --color-secondary-light: #c4b5fd;

  /* Accent - Warm Orange for Fun */
  --color-accent: #fb923c;

  /* Text Colors */
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 50%, #7dd3fc 100%);
  --gradient-secondary: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
  --gradient-accent: linear-gradient(135deg, #fb923c 0%, #fdba74 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.3) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(14, 165, 233, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 165, 233, 0.12);
  --shadow-lg: 0 16px 48px rgba(14, 165, 233, 0.15);
  --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.2);

  /* Glass Effect */
  --glass-blur: blur(20px);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.5);

  /* Spacing & Border */
  --border-radius: 24px;
  --border-radius-sm: 16px;
  --font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background:
    linear-gradient(180deg, #f8fafc 0%, #e0f2fe 50%, #f0f9ff 100%);
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

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

a:hover {
  color: var(--color-primary-dark);
}

/* ===== Layout ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Glass Card Component ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ===== Header ===== */
.header {
  padding: 14px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .logo {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 6px;
}

.nav a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
}

.nav a:hover {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(14, 165, 233, 0.15);
}

.nav a.active {
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(14, 165, 233, 0.3);
  font-weight: 600;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  font-weight: 400;
}

/* ===== Cards Grid ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 0;
  max-width: 960px;
  margin: 0 auto;
}

.card {
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: var(--transition);
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-6px);
}

.card:nth-child(1) .card-icon {
  background: var(--gradient-primary);
}

.card:nth-child(2) .card-icon {
  background: var(--gradient-secondary);
}

.card:nth-child(3) .card-icon {
  background: var(--gradient-accent);
}

.card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

.card .btn {
  display: inline-block;
  padding: 10px 24px;
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:nth-child(1) .btn { background: var(--gradient-primary); }
.card:nth-child(2) .btn { background: var(--gradient-secondary); }
.card:nth-child(3) .btn { background: var(--gradient-accent); }
.card:nth-child(4) .btn { background: linear-gradient(135deg, #10b981 0%, #34d399 100%); }

.card .btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* ===== Page Sections ===== */
.page-section {
  min-height: 100vh;
  padding: 120px 24px 80px;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* ===== Back Button ===== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--color-text);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin-bottom: 28px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(-3px);
}

.back-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ===== Video Container ===== */
.video-wrapper {
  max-width: 900px;
  margin: 0 auto 24px;
}

.video-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
}


.video-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  color: var(--color-text-muted);
  font-size: 1rem;
  min-height: 400px;
  width: 100%;
}

.video-placeholder svg {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  stroke: var(--color-primary);
  opacity: 0.6;
}

.video-label {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ===== Info Card ===== */
.info-card {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 24px 28px;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.info-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== File Preview Card ===== */
.file-preview-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px;
}

.file-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.file-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.file-icon.docx {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.file-icon.xlsx {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.file-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.file-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.file-info p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ===== Preview Frame ===== */
.preview-frame {
  width: 100%;
  min-height: 550px;
  border: none;
  border-radius: var(--border-radius-sm);
  background: white;
  box-shadow: var(--shadow-sm);
  display: block;
}

.preview-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.preview-fallback {
  display: none;
  text-align: center;
  padding: 40px 20px;
  background: var(--color-bg-secondary);
  border-radius: var(--border-radius-sm);
}

.preview-fallback p {
  color: var(--color-text-muted);
}

.preview-fallback a {
  color: var(--color-primary);
  font-weight: 600;
}

/* ===== Office Online Preview ===== */
.office-preview {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.office-preview iframe {
  width: 100%;
  height: 600px;
  border: none;
}

/* ===== Video Optimization ===== */
.video-container video {
  width: 100%;
  display: block;
  background: #1e293b;
  max-height: 500px;
  object-fit: contain;
}

/* ===== Download Section ===== */
.download-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.download-info {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.download-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ===== Resume Page ===== */
.resume-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resume-section {
  padding: 24px 28px;
}

.resume-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary-light);
}

.resume-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resume-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.resume-label {
  font-weight: 600;
  color: var(--color-text);
  min-width: 80px;
}

.resume-value {
  color: var(--color-text-muted);
}

.resume-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resume-list li {
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
}

.resume-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.resume-project {
  margin-bottom: 16px;
}

.resume-project:last-child {
  margin-bottom: 0;
}

.resume-project h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.resume-project p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.resume-text {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===== Resume Popup ===== */
.resume-trigger {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.resume-trigger:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.resume-trigger svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
}

.resume-trigger span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.resume-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.resume-popup.active {
  opacity: 1;
  visibility: visible;
}

.resume-popup-content {
  width: 75%;
  max-width: 900px;
  height: 85vh;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition);
}

.resume-popup.active .resume-popup-content {
  transform: scale(1);
}

.resume-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.resume-popup-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.resume-popup-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.resume-popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.resume-popup-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text);
  stroke-width: 2;
  fill: none;
}

.resume-pdf-frame {
  flex: 1;
  width: 100%;
  border: none;
  background: #f5f5f5;
}

/* ===== Blog Link ===== */
.blog-link {
  padding: 8px 16px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.blog-link:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}

/* ===== Sidebar Toggle Button ===== */
.sidebar-toggle {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.sidebar-toggle:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.sidebar-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
}

.sidebar-toggle span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  writing-mode: vertical-rl;
}

/* ===== Sidebar Panel ===== */
.sidebar-panel {
  position: fixed;
  left: -400px;
  top: 0;
  width: 380px;
  height: 100vh;
  z-index: 150;
  background: white;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: left 0.3s ease;
}

.sidebar-panel.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
}

.sidebar-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.sidebar-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.sidebar-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text);
  stroke-width: 2;
  fill: none;
}

.sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.resume-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.resume-section:last-child {
  border-bottom: none;
}

.resume-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary-light);
}

.resume-section p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.resume-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resume-section li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

.resume-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

/* ===== Sidebar Overlay ===== */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 140;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 28px 24px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ===== Blog Link ===== */

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .nav {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .preview-frame {
    min-height: 400px;
  }

  .download-section {
    flex-direction: column;
    text-align: center;
  }
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero h1, .hero p {
  animation: fadeInUp 0.7s ease-out;
}

.hero p {
  animation-delay: 0.1s;
}

.card-icon {
  animation: float 5s ease-in-out infinite;
}

.card:nth-child(2) .card-icon { animation-delay: 0.7s; }
.card:nth-child(3) .card-icon { animation-delay: 1.4s; }
.card:nth-child(4) .card-icon { animation-delay: 2.1s; }

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  .card-icon {
    animation: none;
  }

  .card:hover {
    transform: none;
  }
}