
body {
    background-color: #f0fbff;
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
    overflow-x: hidden;
    color: #111;
}

/* =============================================
   NAV — base styles (work on ALL screen sizes)
   ============================================= */

.mobile-menu-wrapper {
    position: relative;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #acdcee;
    padding: 10px 40px;
    border-radius: 25px;
    width: max-content;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: 250px;
}

.username {
    color: black;
    font-weight: 600;
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    color: black;
}

.nav-menu {
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: white;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 999;
    width: 240px;
    text-align: left;
}

.nav-menu a {
    
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 15px;
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
    transition: background 0.2s;
}

.nav-menu a:hover {
    background-color: #f0f0f0;
    color: #4f8ef7;
}

.nav-menu.show {
    display: flex;
}

.navIcon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    font-size: 15px;
}

/* =============================================
   AVAILABILITY BADGE
   ============================================= */

.availability-badge {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #acdcee;
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4caf7d;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

/* =============================================
   HERO
   ============================================= */

.hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 44px 10% 0;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 560px;
}

.name-heading {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.welcome-heading {
    font-size: clamp(15px, 1.8vw, 19px);
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.mainText p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.8;
}

/* =============================================
   BUTTONS
   ============================================= */

.contactMe {
    display: flex;
    align-items: center;
    margin-top: 28px;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    object-fit: contain;
}

.linkedin-button {
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    border: none;
    cursor: pointer;
}

.linkedin-button:hover {
    transform: translateY(-2px);
    opacity: 0.88;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-linkedin {


}

.btn-github {


}

.btn-projects {
    background-color: transparent;
    color: black;
    border: 2px solid black !important;
    border-radius: 10px;
}

.btn-projects:hover {
    background-color: #eee;
}

.btn-icon {
    width: 18px;
    height: 18px;
    fill: white;
    flex-shrink: 0;
}

/* =============================================
   PROFILE PIC
   ============================================= */

.hero-image {
    flex-shrink: 0;
}

.profile-pic5 {
    display: block;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #acdcee;
    box-shadow:
        0 0 0 8px rgba(172, 220, 238, 0.2),
        0 8px 24px rgba(172, 220, 238, 0.3);
}

/* =============================================
   DIVIDER
   ============================================= */

.section-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 860px;
    margin: 56px auto 0;
    padding: 0 10%;
    color: #aaa;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #c8ecf8;
}

/* =============================================
   STATS
   ============================================= */

.stats-strip {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px 10% 20px;
}

.stat-card {
    background: #fff;
    border: 2px solid black;
    border-radius: 16px;
    padding: 22px 36px;
    text-align: center;
    min-width: 140px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 34px;
    font-weight: 700;
    color: #000;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

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

.quick-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 20px 10% 80px;
}

.quick-link-card {
    background: transparent;
    border: 2px solid grey;
    border-radius: 14px;
    padding: 20px 26px;
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    min-width: 170px;
    transition: background 0.2s, transform 0.2s;
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
}

.quick-link-card:hover {
    background: #acdcee;
    transform: translateY(-3px);
}

.quick-link-card i {
    font-size: 20px;
    color: #666;
    width: 22px;
    text-align: center;
}

.quick-link-card:hover i {
    color: #000;
}

.quick-link-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quick-link-label .sub {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}


/* ===== FEATURED PROJECT ===== */

.featured-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    text-align: left;
    padding: 60px 10% 16px;
    max-width: 800px;
    margin: 0 auto;

}

.featured-grid {
    display: flex;
    gap: 12px;   /* was -100px, change to any small number */
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.featured-card {
    background: white;
    border: 2px solid black;
    border-radius: 16px;
    overflow: hidden;
    width: 340px;
    margin: 0 auto;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}



.featured-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e8f6fb;
}

.featured-img-wrap img {
    width: 100%;
    height: 90%;

    transition: transform 0.35s;
}



.featured-info {
    padding: 18px 20px 20px;
}

.featured-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.featured-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.featured-year {
    font-size: 14px;
    color: #999;
}

.featured-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== VIEW MORE BUTTON ===== */
.view-more-wrap {
    display: flex;
    justify-content: center;
    padding: 28px 0 60px;
}

.view-more-btn {
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
    background-color: #acdcee;
    color: black;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;

}


.featured{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;

    color: #999;
    text-align: left;
    padding: 30px 10% 10px;
    max-width: 800px;
    margin: 0 auto;

}



/* =============================================
   MOBILE  (≤ 680px)
   ============================================= */

@media (max-width: 680px) {

    .hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 24px;
        padding: 36px 6% 0;
    }

    .contactMe {
        justify-content: center;
    }

    .availability-badge {
        margin-top: 32px;
    }

    .profile-pic5 {
        width: 150px;
        height: 150px;
    }

    .stats-strip,
    .quick-links {
        padding-left: 6%;
        padding-right: 6%;
    }

    .section-divider {
        padding: 0 6%;
    }

    .name-heading {
        font-size: clamp(28px, 8vw, 42px);
    }
}