/* Portfolio Section */
  .cobra-portfolio {
    padding: 60px 0;
  }

  /* Project Card */
  .cobra-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 6px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cobra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 14px 30px rgba(0,0,0,0.12);
  }

  /* Title & Description */
  .cobra-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: left;
    color: #222;
  }

  .cobra-desc {
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1;
    text-align: left;
  }

  /* Links */
  .cobra-links {
    margin: 15px 0;
  }

  .cobra-links a {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
  }

  .cobra-links a:hover {
    color: #0056b3;
  }

  /* Tags */
  .cobra-tags {
    margin-top: auto; /* pins tags to bottom for equal height */
  }

  .cobra-badge {
    display: inline-block;
    background: #f4f4f4;
    border-radius: 12px;
    font-size: 0.75rem;
    padding: 5px 10px;
    margin-right: 6px;
    margin-bottom: 6px;
    color: #333;
    transition: background 0.3s;
  }

  .cobra-badge:hover {
    background: #e0e0e0;
  }