

  :root {
    --blue-deep: #2a5fa5;
    --blue-mid: #4b8fd4;
    --blue-light: #a8cef0;
    --pastel-lavender: #c9d9f5;
    --pastel-sky: #daeeff;
    --pastel-mint: #d4f0f0;
    --pastel-peach: #fde8da;
    --white: #ffffff;
    --text-dark: #1a2d4a;
    --text-mid: #3b5a82;
  }

/* 
  body {
    background: linear-gradient(135deg, #eef5ff 0%, #f5f0ff 50%, #eef9ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    padding: 60px 20px;
    overflow-x: hidden;
  } */

  .section-wrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;
  }

  /* Floating blobs */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
  }
  .blob-1 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #a8cef0, #c9d9f5);
    top: -80px; left: -100px;
    animation-delay: 0s;
  }
  .blob-2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, #d4f0f0, #a8cef0);
    bottom: -60px; right: -80px;
    animation-delay: 3s;
  }
  .blob-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, #fde8da, #f5c9d9);
    top: 40%; right: 5%;
    animation-delay: 5s;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.03); }
  }

  /* Glass card */
  .card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 32px;
    padding: 64px 60px 60px;
    box-shadow: 0 20px 80px rgba(42, 95, 165, 0.1), 0 4px 24px rgba(42, 95, 165, 0.08);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  /* Decorative inner arc */
  .card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(168, 206, 240, 0.2);
    pointer-events: none;
  }
  .card::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 30px solid rgba(201, 217, 245, 0.2);
    pointer-events: none;
  }

  /* Header area */
  .header-area {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
  }

  .badge-icon {
    width: 72px; height: 72px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(42, 95, 165, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
  }

  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 24px rgba(42, 95, 165, 0.3); }
    50% { box-shadow: 0 8px 36px rgba(42, 95, 165, 0.55); }
  }

  /* .header-text {} */

  .eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 8px;
    opacity: 0;
    animation: slideUp 0.6s ease forwards 0.2s;
  }

  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    opacity: 0;
    animation: slideUp 0.6s ease forwards 0.35s;
  }

  h2 span {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .subtitle {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-top: 8px;
    max-width: 480px;
    opacity: 0;
    animation: slideUp 0.6s ease forwards 0.5s;
  }

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

  /* Skills grid */
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
  }

  .skill-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(218, 238, 255, 0.5));
    border: 1px solid rgba(168, 206, 240, 0.5);
    border-radius: 20px;
    padding: 22px 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: default;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeCard 0.5s ease forwards;
  }

  .skill-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(201, 217, 245, 0.6));
    box-shadow: 0 12px 32px rgba(42, 95, 165, 0.14);
    border-color: rgba(75, 143, 212, 0.5);
  }

  .skill-card:nth-child(1) { animation-delay: 0.55s; }
  .skill-card:nth-child(2) { animation-delay: 0.65s; }
  .skill-card:nth-child(3) { animation-delay: 0.75s; }
  .skill-card:nth-child(4) { animation-delay: 0.85s; }
  .skill-card:nth-child(5) { animation-delay: 0.95s; }
  .skill-card:nth-child(6) { animation-delay: 1.05s; }

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

  .skill-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .skill-icon.c1 { background: #daeeff; }
  .skill-icon.c2 { background: #d4f0f0; }
  .skill-icon.c3 { background: #e4d9f8; }
  .skill-icon.c4 { background: #fde8da; }
  .skill-icon.c5 { background: #d9f0e4; }
  .skill-icon.c6 { background: #f8d9e9; }

  /* .skill-info {} */
  .skill-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 3px;
  }
  .skill-desc {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.5;
  }

  /* Footer tagline */
  .tagline-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
    border-radius: 16px;
    padding: 20px 28px;
    opacity: 0;
    animation: slideUp 0.6s ease forwards 1.2s;
  }

  .tagline-bar .icon { font-size: 22px; }
  .tagline-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    line-height: 1.5;
  }
  .tagline-text strong {
    color: #fff;
    font-weight: 500;
  }

  .dot-divider {
    display: flex;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .dot-divider span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
  }
  .dot-divider span:nth-child(2) { background: rgba(255,255,255,0.65); }
  .dot-divider span:nth-child(3) { background: rgba(255,255,255,0.9); }
  

  @media (max-width: 640px) {
    .card { padding: 40px 24px 36px; }
    .header-area { flex-direction: column; gap: 20px; }
    .skills-grid { grid-template-columns: 1fr 1fr; }
    .tagline-bar { flex-wrap: wrap; }
  }
