/* Hero name */
.profile-left h1 {
    font-weight: 700;
}

/* Subtitle */
.subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Stack / tech line */
.stack-line {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.6;
}

/* =========================
   EXPERIENCE & PROJECTS
========================= */

.experience-item,
.project-item {
    margin-bottom: 20px;
}

/* Meta text (date, stack) */
.exp-meta,
.proj-stack {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

/* Experience bullet points */
.exp-points {
    padding-left: 18px;
    font-size: 13px;
    color: #444;
}

.exp-points li {
    margin-bottom: 6px;
}

/* =========================
   PROJECT HEADER + GITHUB LINK
========================= */

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.project-header h4 {
    font-size: 15px;
    margin: 0;
}

/* GitHub pill button */
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #444;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    transition: all 0.25s ease;
}

.project-link img {
    width: 14px;
    height: 14px;
    opacity: 0.85;
}

.project-link:hover {
    border-color: #ff6a00;
    color: #ff6a00;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.15);
}

.project-link:hover img {
    opacity: 1;
}



/* =========================
   BASE CONTAINER
========================= */
.container {
    max-width: 1200px;
    margin: 100px auto 60px;
    padding: 24px;
    font-family: Inter, sans-serif;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
}



/* =========================
   MAIN WRAPPER (ONE BIG BOX)
========================= */
.profile-wrapper {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* =========================
   PROFILE HEADER
========================= */
.profile-card {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.profile-left h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Highlight + verification */
.highlight {
    color: #0099ff;

}

.verified {
    display: inline-flex;
    align-items: center;
    margin-left: 2px;
}

.verified img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    position: relative;
    top: 4px;
}



/* Badges */
.badges {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.badge {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
}

.badge.orange {
    background: #ffe8d9;
    color: #ff6a00;
}

.badge.green {
    background: #e6f9ef;
    color: #1e9e62;
}

/* Subtitle + stack */
.subtitle {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}

.stack-line {
    color: #0084ff;
    font-size: 13px;
}

/* =========================
   PROFILE RIGHT (CONTACT)
========================= */
.profile-right {
    margin-left: 20px;
    text-align: left;
    font-size: 13px;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item {
    display: flex;
    align-items: center;
    /* ✅ vertical centering */
    gap: 8px;
    font-size: 12px;
    line-height: 1.4;
}

.contact-item img {
    width: 14px;
    height: 14px;
    display: block;
    /* ✅ removes baseline shift */
    flex-shrink: 0;
    /* ✅ prevents icon squeeze */
    opacity: 0.8;
}


.contact span {
    display: block;
    margin-bottom: 6px;

}



/* =========================
   ABOUT + SKILLS GRID
========================= */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

/* =========================
   INNER SECTIONS (SOFT CARDS)
========================= */
.card.about,
.card.skills {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
}

/* Headings */
.card h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

/* =========================
   ABOUT SECTION
========================= */
.about p {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
}

.highlight-box {
    background: #fff5ee;
    border: 1px solid #ffd9bf;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
}

.read-more {
    font-size: 10px;
    display: inline-block;
    margin-top: 10px;
    color: #007aff;
    text-decoration: none;
}

/* =========================
   FOOTER
========================= */
.footer {
    margin-top: 60px;
    padding: 20px 0;
    text-align: center;
    font-size: 10px;
    color: #5c5c5c;
}

.footer p {
    font-family: 'JetBrains Mono', monospace;
    opacity: 0.7;
}

/* =========================
   SERVICES INSIDE ABOUT
========================= */
.services-inside {
    margin-top: 24px;
}

.services-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* Grid inside About */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* Individual service box */
.service-box {
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 14px;
    background: #ffffff;
    transition: all 0.25s ease;
}

.service-box:hover {
    transform: translateY(-3px);
    border-color: #0099ff;
    box-shadow: 0 10px 26px rgba(0, 153, 255, 0.15);
}

/* Icon */
.service-box img {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    opacity: 0.9;
}

/* Title */
.service-box h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Description */
.service-box p {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}


/* Stack cards vertically inside columns */
.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
    }

    .container {
        margin: 90px 10px 40px;
    }

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

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

    .profile-wrapper {
        padding: 20px;
    }
}