
/* Reset & base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    /* body, html {
      height: 100%;
      width: 100%;
    } */

    /* Background */
    body {
    background-color: var(--surface1);
      /* background: linear-gradient(135deg, #1f2937, #111827); */
      display: flex;
      
      justify-content: center;
      align-items: center;
       color: var(--text1);
    }
/* Profile card container (matches skill card style) */
    
    /* Container full width */
    .profile-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: wrap;
      padding: 20px;
      background-color: var(--main-background-color);
      backdrop-filter: blur(8px);
    }

    /* Profile card */
    .profile-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 600px;
      width: 100%;
      background: transparent;
      /* background-color: var(--main-background-color); */
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0,0,0,0.4);
      transition: transform 0.3s ease;
    }

    .profile-card:hover {
      transform: translateY(-10px);
    }

    /* Image */
    .profile-card img {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 4px solid #6366f1;
      object-fit: cover;
      margin-bottom: 25px;
      transition: transform 0.3s ease;
    }

    .profile-card img:hover {
      transform: scale(1.08);
    }

    /* Name & intro */
    .profile-card h1 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #f9fafb;
    }

    .profile-card p {
      font-size: 1.1rem;
      color: #d1d5db;
      line-height: 1.6;
      /* max-width: 700px; */
       width: wrap;
    }
    

    /* Button */
    .profile-card button {
      margin-top: 25px;
      padding: 12px 28px;
      border-radius: 12px;
      border: none;
      background: #6366f1;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .profile-card button:hover {
      background: #4f46e5;
      transform: scale(1.05);
    }

    /* Responsive for larger screens */
    @media(min-width: 768px) {
      .profile-card {
        flex-direction: row;
        text-align: left;
        padding: 50px;
        gap: 40px;
      }

      .profile-card img {
        margin-bottom: 0;
      }

      .profile-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
    }
/* ---------- Container ---------- */
.skills_ontainer {
    display: grid;
    grid-template-columns: 1fr 1fr; /* skills left, capabilities right */
    gap: 30px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: #0f172a; /* dark background */
    border-radius: 12px;
}

/* ---------- Left Section (Skills + Tech) ---------- */
.techandskills {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
}

/* Skills grid */
.skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

/* Each skill card */
.skill {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 15px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.skill:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Skill name & percentage */
.skill .name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.skill .value {
    font-size: 14px;
    font-weight: 600;
    color: #38bdf8;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Progress bar */
.percent {
    margin-top: 8px;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}
.progress {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* ---------- Tech Tags ---------- */
.tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.tech .item {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    transition: background 0.2s;
}
.tech .item:hover {
    background: rgba(255, 255, 255, 0.2);
}

 .capabilities {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
    color: #e2e8f0;
}
.c_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #38bdf8;
}

.bullets-container {
    display: block;
    margin-bottom: 8px;
    margin-top: 16px;
}
.bullet-text {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
}