/* ==========================================
   SMART GITHUB PORTFOLIO ANALYZER
   MODULE 1
   Global + Header + Hero + Search
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0d1117;
    color:#fff;
    min-height:100vh;
    overflow-x:hidden;
    position:relative;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111827;
}

::-webkit-scrollbar-thumb{
    background:#3b82f6;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#60a5fa;
}

/* Background */

.background-blur{
    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
    opacity:.35;
}

.blur1{
    width:380px;
    height:380px;
    background:#2563eb;
    top:-120px;
    left:-120px;
}

.blur2{
    width:420px;
    height:420px;
    background:#7c3aed;
    bottom:-180px;
    right:-150px;
}

/* Header */

.header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:sticky;
    top:0;
    backdrop-filter:blur(20px);
    background:rgba(13,17,23,.72);
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo i{
    font-size:40px;
    color:#3b82f6;
}

.logo h2{
    font-size:24px;
    font-weight:700;
}

.logo span{
    font-size:13px;
    color:#9ca3af;
}

.header nav{
    display:flex;
    gap:35px;
}

.header nav a{
    color:#d1d5db;
    text-decoration:none;
    transition:.3s;
    font-weight:500;
}

.header nav a:hover{
    color:#60a5fa;
}

/* Hero */

.hero{
    width:90%;
    max-width:1200px;
    margin:80px auto;
    text-align:center;
}

.hero h1{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
}

.hero h1 span{
    color:#3b82f6;
}

.hero p{
    margin-top:25px;
    color:#9ca3af;
    font-size:18px;
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.7;
}

/* Search */

.search-container{
    margin-top:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.search-container input{
    width:420px;
    max-width:100%;
    padding:18px 22px;
    background:#161b22;
    color:#fff;
    border:1px solid #30363d;
    border-radius:15px;
    outline:none;
    font-size:16px;
    transition:.3s;
}

.search-container input:focus{
    border-color:#3b82f6;
    box-shadow:0 0 15px rgba(59,130,246,.35);
}

.search-container button{
    padding:18px 34px;
    border:none;
    border-radius:15px;
    background:#2563eb;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:10px;
}

.search-container button:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

/* Hero Features */

.hero-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:70px;
}

.hero-features div{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:28px;
    transition:.35s;
}

.hero-features div:hover{
    transform:translateY(-8px);
    border-color:#3b82f6;
}

.hero-features i{
    font-size:32px;
    color:#3b82f6;
    margin-bottom:15px;
}

.hero-features span{
    display:block;
    font-size:17px;
    font-weight:600;
}

/* Loader */

.loader{
    text-align:center;
    margin:40px auto;
}

.spinner{
    width:65px;
    height:65px;
    border:6px solid rgba(255,255,255,.1);
    border-top:6px solid #3b82f6;
    border-radius:50%;
    margin:auto;
    animation:spin 1s linear infinite;
}

.loader p{
    margin-top:20px;
    color:#9ca3af;
    font-size:16px;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Error */

.error-box{
    width:90%;
    max-width:900px;
    margin:30px auto;
    background:#7f1d1d;
    border:1px solid #ef4444;
    color:#fff;
    padding:18px;
    border-radius:14px;
    text-align:center;
}

/* Utility */



.dashboard{
    width:90%;
    max-width:1300px;
    margin:50px auto;
}

.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

/* Section Title */

.section-title{
    margin-bottom:25px;
}

.section-title h2{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:28px;
    font-weight:700;
}

.section-title i{
    color:#3b82f6;
}

/* Dashboard Card */

.dashboard-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:35px;
    margin-bottom:35px;
    backdrop-filter:blur(20px);
}
/* ==========================================
   SMART GITHUB PORTFOLIO ANALYZER
   MODULE 2
   Profile + Statistics + Insights
========================================== */


/* =========================
   PROFILE CARD
========================= */

.profile-card{
    width:90%;
    max-width:1300px;
    margin:40px auto;
    display:grid;
    grid-template-columns:280px 1fr;
    gap:40px;
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    transition:.35s;
}

.profile-card:hover{
    border-color:#3b82f6;
    transform:translateY(-4px);
}

/* Avatar */

.profile-left{
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

.profile-left img{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #3b82f6;
    box-shadow:0 0 35px rgba(59,130,246,.35);
}

/* Right */

.profile-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.profile-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    flex-wrap:wrap;
}

.profile-top > div{
    flex:1;
    min-width:0;
}

.profile-top h2{
    font-size:34px;
    font-weight:700;
    word-break:break-word;
}

.profile-top p{
    color:#9ca3af;
    margin-top:5px;
    word-break:break-word;
}

.profile-top a{
    text-decoration:none;
    color:#fff;
    background:#2563eb;
    padding:12px 22px;
    border-radius:12px;
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    white-space:nowrap;
    flex-shrink:0;
}
.profile-top a:focus-visible{
    outline:3px solid #60a5fa;
    outline-offset:3px;
}

.profile-top a:hover{
    background:#1d4ed8;
}
/* Bio */

.bio{
    color:#d1d5db;
    line-height:1.8;
    font-size:16px;
}

/* Information */

.profile-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

.profile-info div{
    background:#161b22;
    padding:16px;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:12px;
    border:1px solid #30363d;
    transition:.3s;
    min-width:0;
}

.profile-info div:hover{
    border-color:#3b82f6;
}

.profile-info i{
    color:#3b82f6;
    font-size:18px;
}

.profile-info span,
.profile-info a{
    min-width:0;
    overflow-wrap:anywhere;
    word-break:break-word;
}
.profile-info a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.profile-info a:hover{
    color:#60a5fa;
}

/* Social Stats */

.social-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.social-stats div{
    background:#161b22;
    border-radius:18px;
    padding:24px;
    text-align:center;
    border:1px solid #30363d;
    transition:.3s;
}

.social-stats div:hover{
    transform:translateY(-6px);
    border-color:#3b82f6;
}

.social-stats h3{
    font-size:34px;
    color:#3b82f6;
}

.social-stats span{
    color:#9ca3af;
}


/* =========================
   STATISTICS
========================= */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:25px;
    margin-bottom:40px;
}

.stat-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:35px;
    text-align:center;
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-8px);
    border-color:#3b82f6;
    box-shadow:0 15px 35px rgba(59,130,246,.18);
}

.stat-card i{
    font-size:38px;
    color:#3b82f6;
    margin-bottom:18px;
}

.stat-card h3{
    font-size:18px;
    color:#9ca3af;
    margin-bottom:15px;
    font-weight:500;
}

.stat-card p{
    font-size:34px;
    font-weight:700;
}


/* =========================
   INSIGHTS
========================= */

.insight-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:22px;
}

.insight-item{
    background:#161b22;
    border:1px solid #30363d;
    border-radius:18px;
    padding:28px;
    transition:.35s;
}

.insight-item:hover{
    transform:translateY(-6px);
    border-color:#3b82f6;
}

.insight-item span{
    display:block;
    color:#9ca3af;
    font-size:15px;
    margin-bottom:15px;
}

.insight-item strong{
    font-size:24px;
    font-weight:700;
    color:#fff;
}


/* Placeholder */

.placeholder-card{
    background:#161b22;
    border:2px dashed #30363d;
    border-radius:18px;
    padding:45px;
    text-align:center;
    color:#9ca3af;
    font-size:16px;
}


/* Fade Animation */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.profile-card,
.stat-card,
.dashboard-card,
.insight-item{

    animation:fadeUp .7s ease;

}
/* ==========================================
   SMART GITHUB PORTFOLIO ANALYZER
   MODULE 3
   Repositories + Languages + Footer +
   Responsive + Final Polish
==========================================*/


/* ===========================
   REPOSITORY GRID
=========================== */

.repo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.repo-card{

    background:#161b22;
    border:1px solid #30363d;
    border-radius:18px;
    padding:25px;
    transition:.35s;
    display:flex;
    flex-direction:column;
    gap:18px;

    min-width:0;

}

.repo-card:hover{

    transform:translateY(-8px);
    border-color:#3b82f6;
    box-shadow:0 18px 35px rgba(59,130,246,.18);

}

.repo-card h3{

    font-size:22px;
    color:#58a6ff;

    overflow-wrap:anywhere;
    word-break:break-word;
    line-height:1.4;

}
.repo-card p{

    color:#c9d1d9;
    line-height:1.7;
    flex:1;

}

.repo-footer{

    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
    color:#9ca3af;
    font-size:15px;

}

.repo-footer span{

    display:flex;
    align-items:center;
    gap:8px;

}

.repo-footer i{

    color:#3b82f6;

}


/* ===========================
   LANGUAGE GRID
=========================== */

.language-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;

}

.language-card{

    background:#161b22;
    border:1px solid #30363d;
    border-radius:16px;
    padding:22px;
    text-align:center;
    transition:.3s;

}

.language-card:hover{

    transform:translateY(-6px);
    border-color:#3b82f6;

}

.language-card h3{

    font-size:20px;
    margin-bottom:10px;

}

.language-card p{

    color:#9ca3af;

}


/* ===========================
   SUMMARY
=========================== */

.summary-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;

}

.summary-item{

    background:#161b22;
    border:1px solid #30363d;
    border-radius:18px;
    padding:24px;
    text-align:center;
    transition:.3s;

}

.summary-item:hover{

    border-color:#3b82f6;
    transform:translateY(-6px);

}

.summary-item span{

    display:block;
    color:#9ca3af;
    margin-bottom:12px;

}

.summary-item strong{

    font-size:28px;
    color:#fff;

}


/* ===========================
   FOOTER
=========================== */

.footer{

    margin-top:80px;
    padding:35px 20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    color:#8b949e;

}

.footer p{

    line-height:1.8;

}


/* ===========================
   LINKS
=========================== */

a{

    color:inherit;

}

a:hover{

    text-decoration:none;

}


/* ===========================
   INPUT PLACEHOLDER
=========================== */

input::placeholder{

    color:#8b949e;

}


/* ===========================
   IMAGE
=========================== */

img{

    max-width:100%;
    display:block;

}


/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1100px){

    .profile-card{

        grid-template-columns:1fr;
        text-align:center;

    }

    .profile-left{

        justify-content:center;

    }

    .profile-top{

        justify-content:center;

    }

}


@media(max-width:900px){

    .header{

        flex-direction:column;
        gap:20px;
        padding:20px;

    }

    .header nav{

        flex-wrap:wrap;
        justify-content:center;

    }

    .hero h1{

        font-size:42px;

    }

    .hero-features{

        grid-template-columns:repeat(2,1fr);

    }

}


@media(max-width:650px){

    .hero{

        margin-top:50px;

    }

    .hero h1{

        font-size:34px;

    }

    .hero p{

        font-size:16px;

    }

    .search-container{

        flex-direction:column;

    }

    .search-container input{

        width:100%;

    }
    .search-container input:focus-visible{
    outline:2px solid #60a5fa;
    outline-offset:2px;
}

    .search-container button{

        width:100%;
        justify-content:center;

    }
    .search-container button:focus-visible{
    outline:3px solid #60a5fa;
    outline-offset:3px;
}

    .hero-features{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .social-stats{

        grid-template-columns:1fr;

    }

    .repo-grid{

        grid-template-columns:1fr;

    }

    .language-grid{

        grid-template-columns:1fr;

    }

    .summary-grid{

        grid-template-columns:1fr;

    }

}


/* ===========================
   SELECTION
=========================== */

::selection{

    background:#2563eb;
    color:#fff;

}


/* ===========================
   SMOOTH TRANSITIONS
=========================== */

button,
input,
a,
.stat-card,
.repo-card,
.language-card,
.summary-item,
.insight-item,
.profile-info div,
.social-stats div{

    transition:.3s;

}
/* Repository Button */

.repo-button{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    margin-top:10px;

    padding:12px;

    border-radius:12px;

    background:#2563eb;

    color:white;

    text-decoration:none;

    font-weight:600;

}

.repo-button:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

}


/* Better Footer */

.repo-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;

}
/* ===========================
   PORTFOLIO SCORE
=========================== */

.score-card{

    text-align:center;

}

.score-card h1{

    font-size:70px;

    color:#58a6ff;

    margin-bottom:10px;

}

.score-card h3{

    color:#c9d1d9;

    margin-bottom:25px;

}

.score-bar{

    width:100%;

    height:18px;

    background:#222;

    border-radius:20px;

    overflow:hidden;

}

#scoreFill{

    width:0%;

    height:100%;

    background:linear-gradient(
        90deg,
        #2563eb,
        #60a5fa
    );

    transition:1s;

}
/* ===========================
   CHARTS
=========================== */

.chart-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(420px,1fr));

    gap:30px;

    margin-top:30px;

}

.chart-card{

    position:relative;

    background:rgba(22,27,34,.95);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:28px;

    overflow:hidden;

    backdrop-filter:blur(18px);

    transition:.35s ease;

}

.chart-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(59,130,246,.18);

    border-color:rgba(59,130,246,.35);

}

.chart-card h3{

    text-align:center;

    margin-bottom:22px;

    font-size:1.15rem;

    color:#ffffff;

    font-weight:600;

    letter-spacing:.5px;

}

.chart-card canvas{

    width:100%!important;

    height:360px!important;

}

@media(max-width:900px){

    .chart-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:600px){

    .chart-card{

        padding:20px;

    }

    .chart-card canvas{

        height:300px!important;

    }

}
/* ==========================================
   Repository Health
========================================== */

.advanced-analytics{

    margin-top:50px;

}

.health-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

}

.health-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:25px;

    text-align:center;

    transition:.35s;

    backdrop-filter:blur(15px);

}

.health-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(59,130,246,.18);

}

.health-card h3{

    color:#9ca3af;

    font-size:16px;

    margin-bottom:15px;

}

.health-card p{

    color:#ffffff;

    font-size:34px;

    font-weight:700;

}
/* ==========================================
   SKELETON LOADER
========================================== */

.skeleton-container{
    width:100%;
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.skeleton-profile{
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px;
    border-radius:18px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.08);
}

.skeleton-avatar{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#2d3748;
    flex-shrink:0;
}

.skeleton-profile-info{
    flex:1;
}

.skeleton-line{
    height:16px;
    border-radius:8px;
    background:#2d3748;
    margin-bottom:16px;
}

.skeleton-line.long{
    width:70%;
}

.skeleton-line.medium{
    width:50%;
}

.skeleton-line.short{
    width:30%;
}

.skeleton-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.skeleton-card{
    height:120px;
    border-radius:16px;
    background:#2d3748;
}

/* Shimmer Animation */

.shimmer{
    position:relative;
    overflow:hidden;
}

.shimmer::after{
    content:"";
    position:absolute;
    top:0;
    left:-150%;
    width:50%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
    animation:shimmer 1.3s infinite;
}

@keyframes shimmer{

    100%{
        left:160%;
    }

}

/* Mobile */

@media(max-width:768px){

    .skeleton-profile{

        flex-direction:column;
        align-items:center;
        text-align:center;

    }

    .skeleton-line.long,
    .skeleton-line.medium,
    .skeleton-line.short{

        width:100%;

    }

}
.hidden{
    display:none;
}
/* ==========================================
   PHASE 8.1 - PROFILE COMPLETENESS
========================================== */

.profile-completeness{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.completion-header{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.completion-header > div{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.completion-header h3{
    font-size:28px;
    font-weight:700;
}

.completion-progress{
    width:100%;
    height:14px;
    background:rgba(255,255,255,0.08);
    border-radius:30px;
    overflow:hidden;
}

.completion-bar{
    width:0%;
    height:100%;
    border-radius:30px;
    background:linear-gradient(90deg,#22c55e,#3b82f6);
    transition:width .8s ease;
}

.completion-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.completion-grid h4{
    margin-bottom:15px;
    font-size:18px;
    font-weight:600;
}

.completion-grid ul{
    list-style:none;
    padding:0;
    margin:0;
}

.completion-grid li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    font-size:15px;
    color:#d8d8d8;
    line-height:1.5;
}

.completed-fields li::before{
    content:"✔";
    color:#22c55e;
    font-weight:bold;
}

.missing-fields li::before{
    content:"✖";
    color:#ef4444;
    font-weight:bold;
}
.completion-status{
    display:inline-block;
    margin-top:12px;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    transition:all .3s ease;
}
/* Status Colors */

.status-recruiter{
    background:rgba(34,197,94,.15);
    color:#22c55e;
    border:1px solid rgba(34,197,94,.35);
}

.status-excellent{
    background:rgba(59,130,246,.15);
    color:#3b82f6;
    border:1px solid rgba(59,130,246,.35);
}

.status-good{
    background:rgba(234,179,8,.15);
    color:#eab308;
    border:1px solid rgba(234,179,8,.35);
}

.status-average{
    background:rgba(249,115,22,.15);
    color:#f97316;
    border:1px solid rgba(249,115,22,.35);
}

.status-poor{
    background:rgba(239,68,68,.15);
    color:#ef4444;
    border:1px solid rgba(239,68,68,.35);
}

/* ==========================================
   PHASE 8.2 - STRENGTH ANALYSIS
========================================== */

.strength-analysis{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.strength-item{
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px 20px;
    border-radius:16px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    transition:all .3s ease;
}

.strength-item:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,0.07);
}

.strength-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    font-weight:700;
    flex-shrink:0;
}

.strength-text{
    flex:1;
}

.strength-title{
    font-size:17px;
    font-weight:600;
    margin-bottom:4px;
}

.strength-description{
    font-size:14px;
    color:#b8b8b8;
    line-height:1.6;
}

/* Status Colors */

.strength-good .strength-icon{
    background:rgba(34,197,94,.18);
    color:#22c55e;
}

.strength-warning .strength-icon{
    background:rgba(234,179,8,.18);
    color:#eab308;
}

.strength-poor .strength-icon{
    background:rgba(239,68,68,.18);
    color:#ef4444;
}
/* ===============================
   Improvement Suggestions
================================ */

.improvement-card{
    margin-top:30px;
}

.suggestion-item{

    display:flex;
    align-items:flex-start;
    gap:15px;

    padding:16px 18px;

    margin-bottom:14px;

    border-radius:14px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    transition:.3s;
}

.suggestion-item:hover{

    transform:translateY(-3px);

    border-color:#4cc9f0;
}

.suggestion-icon{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#1f2937;

    color:#4cc9f0;

    font-size:18px;

    flex-shrink:0;
}

.suggestion-content h4{

    margin-bottom:6px;

    font-size:17px;
}

.suggestion-content p{

    color:#b8b8b8;

    line-height:1.6;
}
/* ===================================
   Recruiter Insights
=================================== */

.recruiter-card{
    margin-top:30px;
}

.recruiter-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:18px;

    margin-top:20px;

}

.recruiter-item{

    padding:18px;

    border-radius:14px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    transition:.3s;

}

.recruiter-item:hover{

    transform:translateY(-4px);

    border-color:#4cc9f0;

}

.recruiter-item span{

    display:block;

    font-size:14px;

    color:#b8b8b8;

    margin-bottom:8px;

}

.recruiter-item h4{

    font-size:20px;

    font-weight:700;

}

.recruiter-summary{

    margin-top:28px;

    padding:20px;

    border-radius:14px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

}

.recruiter-summary h4{

    margin-bottom:10px;

    font-size:18px;

}

.recruiter-summary p{

    color:#cfcfcf;

    line-height:1.7;

}
/* ===========================
   Repository Health
=========================== */

.repo-health{

    margin-top:16px;

    padding:14px;

    border-radius:12px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

}

.repo-health h4{

    margin-bottom:8px;

    font-size:15px;

    font-weight:600;

}

.health-bar{
    width:100%;
    height:12px;
    background:#3b3f46;
    border-radius:999px;
    overflow:hidden;
    margin:12px 0;
}

.health-fill{
    height:100%;
    width:0;
    border-radius:999px;
    background:linear-gradient(90deg,#22c55e,#3b82f6);
    transition:width .6s ease;
}
.health-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:14px;
}

.health-score{
    font-size:18px;
    font-weight:700;
    color:#ffffff;
}


.health-excellent{
    color:#22c55e;
    font-weight:600;
}

.health-good{
    color:#3b82f6;
    font-weight:600;
}

.health-average{
    color:#f59e0b;
    font-weight:600;
}

.health-poor{
    color:#ef4444;
    font-weight:600;
}
/* ========================= */
/* Top Repository Rankings */
/* ========================= */

.top-repositories-section{
    margin-top:40px;
}

.top-repositories-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
    margin-top:25px;
}

.top-repo-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:22px;
    backdrop-filter:blur(12px);
    transition:0.3s ease;
}

.top-repo-card:hover{
    transform:translateY(-6px);
    border-color:#58a6ff;
    box-shadow:0 12px 30px rgba(88,166,255,.18);
}

.top-rank{
    font-size:30px;
    margin-bottom:12px;
}

.top-repo-name{
    font-size:20px;
    font-weight:700;
    color:#fff;
    margin-bottom:12px;
    word-break:break-word;
}

.top-repo-score{
    font-size:16px;
    color:#58a6ff;
    font-weight:600;
    margin-bottom:10px;
}

.top-repo-status{
    display:inline-block;
    padding:6px 12px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:16px;
}

.rank-excellent{
    background:#238636;
    color:#fff;
}

.rank-good{
    background:#1f6feb;
    color:#fff;
}

.rank-average{
    background:#d29922;
    color:#fff;
}

.rank-poor{
    background:#da3633;
    color:#fff;
}

.top-repo-btn{
    display:inline-block;
    margin-top:10px;
    text-decoration:none;
    background:#58a6ff;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.top-repo-btn:hover{
    background:#388bfd;
}
.rank-outstanding{
    background:#7c3aed;
    color:#fff;
}

.gold{
    border:2px solid #FFD700;
}

.silver{
    border:2px solid #C0C0C0;
}

.bronze{
    border:2px solid #CD7F32;
}
.download-report-btn{

    margin-top:20px;
    padding:14px 24px;

    border:none;
    border-radius:12px;

    background:linear-gradient(
        135deg,
        #ef4444,
        #dc2626
    );

    color:white;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.download-report-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(239,68,68,.35);

}
@media (prefers-reduced-motion: reduce){

    *{
        animation:none !important;
        transition:none !important;
        scroll-behavior:auto !important;
    }

}