<<<<<<< HEAD
<<<<<<< HEAD
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

/* Section Titles - Only Green */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: #059669;
}

.section-title i {
    margin-right: 1rem;
    color: #059669;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #059669;
    border-radius: 2px;
}

/* Section Subtitles - Black */
.section-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-brand i {
    font-size: 2rem;
    color: #059669;
}

.navbar h2 {
    font-weight: 700;
    font-size: 1.6rem;
    color: #1e293b;
}

.menu a {
    margin-left: 2rem;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #059669;
}

.nav-toggle {
    display: none;
    color: #1e293b;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* Very light green and sky blue overlay with white shades */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(220, 252, 231, 0.9) 0%,
        rgba(186, 230, 253, 0.9) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Social Links in Top Right Corner */
.hero-social-corner {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.hero-social-corner .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-social-corner .social-link.linkedin {
    background: #0077b5;
    color: white;
}

.hero-social-corner .social-link.github {
    background: #333;
    color: white;
}

.hero-social-corner .social-link.scholar {
    background: #4285f4;
    color: white;
}

.hero-social-corner .social-link.email {
    background: #ea4335;
    color: white;
}

.hero-social-corner .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #1e293b;
}

/* Profile Photo Container */
.hero-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 40px -10px rgba(5, 150, 105, 0.3);
}

.hero-profile-name h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-profile-name p {
    font-size: 1.1rem;
    color: #475569;
    margin: 0.2rem 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-profile-name p:first-of-type {
    font-weight: 600;
    color: #059669;
}

/* Hero Title Line with Colorful Keywords */
.hero-title-line {
    max-width: 900px;
    margin: 1.5rem auto 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
}

.hero-title-line p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.8;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

/* Colorful Keywords */
.keyword {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.keyword:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.keyword.sram {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border: 1px solid #3b82f6;
}

.keyword.imc {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid #10b981;
}

.keyword.designer {
    background: linear-gradient(135deg, #cffafe, #a5f3fc);
    color: #155e75;
    border: 1px solid #06b6d4;
}

/* Hero Stats Footer - Moved from About to Hero */
.hero-stats-footer {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.hero-stats-footer .stat-footer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    transition: all 0.3s ease;
}

.hero-stats-footer .stat-footer-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 30px -8px rgba(5, 150, 105, 0.2);
}

.hero-stats-footer .stat-footer-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #059669;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.hero-stats-footer .stat-footer-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1e293b;
    font-weight: 600;
}

/* Small NM text style - for making "nm" smaller in process nodes */
.small-nm {
    font-size: 0.65em;
    vertical-align: baseline;
    display: inline-block;
    margin-left: 0.5px;
    font-weight: 500;
    opacity: 0.9;
}

/* Alternative superscript style for small-nm - uncomment if you prefer this look */
/*
.small-nm {
    font-size: 0.6em;
    vertical-align: super;
    display: inline-block;
    margin-left: 1px;
    font-weight: 500;
}
*/

/* Resume Button Container - Middle */
.hero-button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    background: #059669;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(5, 150, 105, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -8px rgba(5, 150, 105, 0.4);
}

.btn-primary i {
    font-size: 1.1rem;
}

/* Plain Straight Border - Replaced Wave */
.hero-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399, #059669);
    z-index: 2;
    box-shadow: 0 -2px 10px rgba(5, 150, 105, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero-social-corner {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .hero-social-corner .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .hero-profile-name h2 {
        font-size: 2rem;
    }
    
    .hero-profile-name p {
        font-size: 1rem;
    }
    
    .hero-title-line {
        padding: 0.8rem 1.2rem;
    }
    
    .hero-title-line p {
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .hero-stats-footer {
        gap: 1rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .hero-stats-footer .stat-footer-number {
        font-size: 1.8rem;
    }
    
    .hero-stats-footer .stat-footer-label {
        font-size: 0.8rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-title-line p {
        flex-direction: column;
        align-items: center;
    }
    
    .keyword {
        width: fit-content;
    }
}
/* ===== ABOUT SECTION ===== */
.about-content {
    width: 100%;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.about-block {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.2rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: #f8fafc;
    transition: all 0.3s;
}

.about-block:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}

.block-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #059669;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.block-content {
    flex: 1;
}

.block-content p {
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* Highlight Blue */
.highlight-blue {
    color: #2563eb;
    font-weight: 600;
    background: #dbeafe;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.link-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f1f5f9;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    margin-top: 0.5rem;
}

.link-container i {
    color: #059669;
}

.faculty-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.faculty-link:hover {
    text-decoration: underline;
}

.tapeout-showcase {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tapeout-badge {
    background: #f1f5f9;
    color: #1e293b;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
}

.tapeout-badge i {
    color: #059669;
}

/* Colorful Skill Pills */
.skill-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.skill-pill {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.skill-pill:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Color Classes */
.color-1 { background: #fee2e2; color: #b91c1c; border-color: #ef4444; }
.color-2 { background: #fff3e0; color: #b45309; border-color: #f97316; }
.color-3 { background: #fef9c3; color: #854d0e; border-color: #fbbf24; }
.color-4 { background: #d1fae5; color: #065f46; border-color: #10b981; }
.color-5 { background: #dbeafe; color: #1e40af; border-color: #3b82f6; }
.color-6 { background: #f3e8ff; color: #6b21a8; border-color: #8b5cf6; }
.color-7 { background: #fce7f3; color: #9d174d; border-color: #ec4899; }
.color-8 { background: #cffafe; color: #155e75; border-color: #06b6d4; }
.color-9 { background: #fff1f2; color: #9f1239; border-color: #f43f5e; }
.color-10 { background: #f1f5f9; color: #334155; border-color: #64748b; }

.award-showcase {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.award-badge {
    background: #f1f5f9;
    color: #1e293b;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
}

.award-badge i {
    color: #059669;
}

.highlight-block {
    background: #f1f5f9;
    border-left: 4px solid #059669;
}

/* Stats Footer Removed from About Section */

/* ===== TABLE STYLING ===== */
.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    background: #059669;
    color: white;
    padding: 1.2rem 1rem;
    font-weight: 600;
    text-align: left;
    border-radius: 15px 15px 0 0;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

table td i {
    color: #059669;
    margin-right: 0.5rem;
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.15);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-year {
    background: #f1f5f9;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
}

.project-badge {
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #1e293b;
}

.project-badge.tapeout {
    background: #dbeafe;
    color: #1e3a8a;
}

.project-badge i {
    margin-right: 0.3rem;
    color: #059669;
}

.project-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
}

.project-subtitle {
    color: #475569;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.project-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
}

.result-item {
    background: #f1f5f9;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.result-item i {
    color: #059669;
}

.project-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.project-tools span {
    background: #f8fafc;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.highlight-card {
    border: 2px solid #059669;
}

/* ===== PUBLICATIONS SECTION ===== */
.publications-list {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.publication-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s;
}

.publication-item:last-child {
    border-bottom: none;
}

.publication-item:hover {
    background: #f8fafc;
    border-radius: 15px;
}

.pub-icon {
    font-size: 2rem;
    color: #059669;
}

.pub-content {
    flex: 1;
}

/* Paper titles - Light Purple */
.pub-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Authors - Black */
.pub-authors {
    color: #000000;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* Venue - Teal */
.pub-venue {
    font-style: italic;
    color: #0f766e;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* DOI - Orange */
.pub-doi {
    font-size: 0.9rem;
    color: #c2410c;
    font-weight: 600;
}

/* ===== SKILLS SECTION ===== */
.skills-container {
    display: grid;
    gap: 2rem;
}

.skill-category {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}

.skill-category h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.skill-category h3 i {
    color: #059669;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.skill-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ===== AWARDS GRID ===== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.award-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.award-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 35px -15px rgba(5, 150, 105, 0.2);
    border-color: #059669;
}

.award-card i {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
}

.award-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: #475569;
    font-size: 0.9rem;
}

/* ===== ACTIVITIES ===== */
.activities-grid {
    display: grid;
    gap: 1.2rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.activity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px -12px rgba(5, 150, 105, 0.2);
}

.activity-item i {
    font-size: 2rem;
    color: #059669;
}

.activity-item h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.3rem;
}

.activity-item p {
    color: #475569;
}

/* ===== INTERNSHIP ===== */
.internship-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.internship-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.internship-header i {
    font-size: 2.5rem;
    color: #059669;
}

.internship-header h3 {
    font-size: 1.6rem;
    color: #000000;
}

.internship-header h4 {
    color: #475569;
    font-weight: 500;
}

.internship-date {
    color: #059669;
    font-weight: 600;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #f1f5f9;
    border-radius: 30px;
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info, .reference-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
    transition: all 0.3s;
    padding: 0.5rem;
    border-radius: 12px;
}

.contact-item:hover {
    background: #f8fafc;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    width: 40px;
    color: #059669;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: #475569;
}

.reference-card h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.reference-item {
    display: flex;
    gap: 1.2rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.reference-item:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
}

.reference-item i {
    font-size: 1.8rem;
    color: #059669;
}

.reference-item h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.3rem;
}

.reference-item p {
    color: #475569;
    margin-bottom: 0.2rem;
}

.reference-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.reference-item a:hover {
    text-decoration: underline;
    color: #059669;
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: white;
    padding: 3rem;
    text-align: center;
    border-top: 4px solid #059669;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.footer-links a {
    color: white;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: white;
    background: #059669;
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-profile-img {
        width: 180px;
        height: 180px;
    }
    
    .hero-profile-name h2 {
        font-size: 2.2rem;
    }
    
    .hero-stats-footer {
        gap: 2rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        min-width: 130px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .menu {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .menu a {
        margin-left: 0;
    }
    
    .nav-toggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .hero {
        padding: 5rem 1rem 4rem;
    }
    
    .hero-social-corner {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .hero-social-corner .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .hero-profile-name h2 {
        font-size: 1.8rem;
    }
    
    .hero-profile-name p {
        font-size: 1rem;
    }
    
    .hero-title-line {
        padding: 0.8rem 1rem;
    }
    
    .hero-title-line p {
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .keyword {
        padding: 0.2rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero-stats-footer {
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .hero-stats-footer .stat-footer-item {
        min-width: 120px;
        padding: 0.8rem 1rem;
    }
    
    .hero-stats-footer .stat-footer-number {
        font-size: 2rem;
    }
    
    .about-block {
        flex-direction: column;
        gap: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .publication-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-profile-img {
        width: 130px;
        height: 130px;
    }
    
    .hero-profile-name h2 {
        font-size: 1.5rem;
    }
    
    .hero-title-line p {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats-footer {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        width: 100%;
        max-width: 220px;
    }
    
    .hero-social-corner {
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .hero-social-corner .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #059669;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #047857;
}

/* ===== SELECTION COLOR ===== */
::selection {
    background: #059669;
    color: white;
}

::-moz-selection {
    background: #059669;
    color: white;
=======
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

/* Section Titles - Only Green */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: #059669;
}

.section-title i {
    margin-right: 1rem;
    color: #059669;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #059669;
    border-radius: 2px;
}

/* Section Subtitles - Black */
.section-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-brand i {
    font-size: 2rem;
    color: #059669;
}

.navbar h2 {
    font-weight: 700;
    font-size: 1.6rem;
    color: #1e293b;
}

.menu a {
    margin-left: 2rem;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #059669;
}

.nav-toggle {
    display: none;
    color: #1e293b;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* Very light green and sky blue overlay with white shades */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(220, 252, 231, 0.9) 0%,
        rgba(186, 230, 253, 0.9) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Social Links in Top Right Corner */
.hero-social-corner {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.hero-social-corner .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-social-corner .social-link.linkedin {
    background: #0077b5;
    color: white;
}

.hero-social-corner .social-link.github {
    background: #333;
    color: white;
}

.hero-social-corner .social-link.scholar {
    background: #4285f4;
    color: white;
}

.hero-social-corner .social-link.email {
    background: #ea4335;
    color: white;
}

.hero-social-corner .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #1e293b;
}

/* Profile Photo Container */
.hero-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 40px -10px rgba(5, 150, 105, 0.3);
}

.hero-profile-name h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-profile-name p {
    font-size: 1.1rem;
    color: #475569;
    margin: 0.2rem 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-profile-name p:first-of-type {
    font-weight: 600;
    color: #059669;
}

/* Hero Title Line with Colorful Keywords */
.hero-title-line {
    max-width: 900px;
    margin: 1.5rem auto 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
}

.hero-title-line p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.8;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

/* Colorful Keywords */
.keyword {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.keyword:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.keyword.sram {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border: 1px solid #3b82f6;
}

.keyword.imc {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid #10b981;
}

.keyword.designer {
    background: linear-gradient(135deg, #cffafe, #a5f3fc);
    color: #155e75;
    border: 1px solid #06b6d4;
}

/* Hero Stats Footer - Moved from About to Hero */
.hero-stats-footer {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.hero-stats-footer .stat-footer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    transition: all 0.3s ease;
}

.hero-stats-footer .stat-footer-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 30px -8px rgba(5, 150, 105, 0.2);
}

.hero-stats-footer .stat-footer-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #059669;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.hero-stats-footer .stat-footer-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1e293b;
    font-weight: 600;
}

/* Small NM text style - for making "nm" smaller in process nodes */
.small-nm {
    font-size: 0.65em;
    vertical-align: baseline;
    display: inline-block;
    margin-left: 0.5px;
    font-weight: 500;
    opacity: 0.9;
}

/* Alternative superscript style for small-nm - uncomment if you prefer this look */
/*
.small-nm {
    font-size: 0.6em;
    vertical-align: super;
    display: inline-block;
    margin-left: 1px;
    font-weight: 500;
}
*/

/* Resume Button Container - Middle */
.hero-button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    background: #059669;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(5, 150, 105, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -8px rgba(5, 150, 105, 0.4);
}

.btn-primary i {
    font-size: 1.1rem;
}

/* Plain Straight Border - Replaced Wave */
.hero-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399, #059669);
    z-index: 2;
    box-shadow: 0 -2px 10px rgba(5, 150, 105, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero-social-corner {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .hero-social-corner .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .hero-profile-name h2 {
        font-size: 2rem;
    }
    
    .hero-profile-name p {
        font-size: 1rem;
    }
    
    .hero-title-line {
        padding: 0.8rem 1.2rem;
    }
    
    .hero-title-line p {
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .hero-stats-footer {
        gap: 1rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .hero-stats-footer .stat-footer-number {
        font-size: 1.8rem;
    }
    
    .hero-stats-footer .stat-footer-label {
        font-size: 0.8rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-title-line p {
        flex-direction: column;
        align-items: center;
    }
    
    .keyword {
        width: fit-content;
    }
}
/* ===== ABOUT SECTION ===== */
.about-content {
    width: 100%;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.about-block {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.2rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: #f8fafc;
    transition: all 0.3s;
}

.about-block:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}

.block-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #059669;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.block-content {
    flex: 1;
}

.block-content p {
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* Highlight Blue */
.highlight-blue {
    color: #2563eb;
    font-weight: 600;
    background: #dbeafe;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.link-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f1f5f9;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    margin-top: 0.5rem;
}

.link-container i {
    color: #059669;
}

.faculty-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.faculty-link:hover {
    text-decoration: underline;
}

.tapeout-showcase {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tapeout-badge {
    background: #f1f5f9;
    color: #1e293b;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
}

.tapeout-badge i {
    color: #059669;
}

/* Colorful Skill Pills */
.skill-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.skill-pill {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.skill-pill:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Color Classes */
.color-1 { background: #fee2e2; color: #b91c1c; border-color: #ef4444; }
.color-2 { background: #fff3e0; color: #b45309; border-color: #f97316; }
.color-3 { background: #fef9c3; color: #854d0e; border-color: #fbbf24; }
.color-4 { background: #d1fae5; color: #065f46; border-color: #10b981; }
.color-5 { background: #dbeafe; color: #1e40af; border-color: #3b82f6; }
.color-6 { background: #f3e8ff; color: #6b21a8; border-color: #8b5cf6; }
.color-7 { background: #fce7f3; color: #9d174d; border-color: #ec4899; }
.color-8 { background: #cffafe; color: #155e75; border-color: #06b6d4; }
.color-9 { background: #fff1f2; color: #9f1239; border-color: #f43f5e; }
.color-10 { background: #f1f5f9; color: #334155; border-color: #64748b; }

.award-showcase {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.award-badge {
    background: #f1f5f9;
    color: #1e293b;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
}

.award-badge i {
    color: #059669;
}

.highlight-block {
    background: #f1f5f9;
    border-left: 4px solid #059669;
}

/* Stats Footer Removed from About Section */

/* ===== TABLE STYLING ===== */
.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    background: #059669;
    color: white;
    padding: 1.2rem 1rem;
    font-weight: 600;
    text-align: left;
    border-radius: 15px 15px 0 0;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

table td i {
    color: #059669;
    margin-right: 0.5rem;
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.15);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-year {
    background: #f1f5f9;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
}

.project-badge {
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #1e293b;
}

.project-badge.tapeout {
    background: #dbeafe;
    color: #1e3a8a;
}

.project-badge i {
    margin-right: 0.3rem;
    color: #059669;
}

.project-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
}

.project-subtitle {
    color: #475569;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.project-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
}

.result-item {
    background: #f1f5f9;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.result-item i {
    color: #059669;
}

.project-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.project-tools span {
    background: #f8fafc;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.highlight-card {
    border: 2px solid #059669;
}

/* ===== PUBLICATIONS SECTION ===== */
.publications-list {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.publication-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s;
}

.publication-item:last-child {
    border-bottom: none;
}

.publication-item:hover {
    background: #f8fafc;
    border-radius: 15px;
}

.pub-icon {
    font-size: 2rem;
    color: #059669;
}

.pub-content {
    flex: 1;
}

/* Paper titles - Light Purple */
.pub-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Authors - Black */
.pub-authors {
    color: #000000;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* Venue - Teal */
.pub-venue {
    font-style: italic;
    color: #0f766e;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* DOI - Orange */
.pub-doi {
    font-size: 0.9rem;
    color: #c2410c;
    font-weight: 600;
}

/* ===== SKILLS SECTION ===== */
.skills-container {
    display: grid;
    gap: 2rem;
}

.skill-category {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}

.skill-category h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.skill-category h3 i {
    color: #059669;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.skill-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ===== AWARDS GRID ===== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.award-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.award-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 35px -15px rgba(5, 150, 105, 0.2);
    border-color: #059669;
}

.award-card i {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
}

.award-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: #475569;
    font-size: 0.9rem;
}

/* ===== ACTIVITIES ===== */
.activities-grid {
    display: grid;
    gap: 1.2rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.activity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px -12px rgba(5, 150, 105, 0.2);
}

.activity-item i {
    font-size: 2rem;
    color: #059669;
}

.activity-item h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.3rem;
}

.activity-item p {
    color: #475569;
}

/* ===== INTERNSHIP ===== */
.internship-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.internship-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.internship-header i {
    font-size: 2.5rem;
    color: #059669;
}

.internship-header h3 {
    font-size: 1.6rem;
    color: #000000;
}

.internship-header h4 {
    color: #475569;
    font-weight: 500;
}

.internship-date {
    color: #059669;
    font-weight: 600;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #f1f5f9;
    border-radius: 30px;
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info, .reference-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
    transition: all 0.3s;
    padding: 0.5rem;
    border-radius: 12px;
}

.contact-item:hover {
    background: #f8fafc;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    width: 40px;
    color: #059669;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: #475569;
}

.reference-card h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.reference-item {
    display: flex;
    gap: 1.2rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.reference-item:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
}

.reference-item i {
    font-size: 1.8rem;
    color: #059669;
}

.reference-item h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.3rem;
}

.reference-item p {
    color: #475569;
    margin-bottom: 0.2rem;
}

.reference-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.reference-item a:hover {
    text-decoration: underline;
    color: #059669;
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: white;
    padding: 3rem;
    text-align: center;
    border-top: 4px solid #059669;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.footer-links a {
    color: white;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: white;
    background: #059669;
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-profile-img {
        width: 180px;
        height: 180px;
    }
    
    .hero-profile-name h2 {
        font-size: 2.2rem;
    }
    
    .hero-stats-footer {
        gap: 2rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        min-width: 130px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .menu {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .menu a {
        margin-left: 0;
    }
    
    .nav-toggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .hero {
        padding: 5rem 1rem 4rem;
    }
    
    .hero-social-corner {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .hero-social-corner .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .hero-profile-name h2 {
        font-size: 1.8rem;
    }
    
    .hero-profile-name p {
        font-size: 1rem;
    }
    
    .hero-title-line {
        padding: 0.8rem 1rem;
    }
    
    .hero-title-line p {
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .keyword {
        padding: 0.2rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero-stats-footer {
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .hero-stats-footer .stat-footer-item {
        min-width: 120px;
        padding: 0.8rem 1rem;
    }
    
    .hero-stats-footer .stat-footer-number {
        font-size: 2rem;
    }
    
    .about-block {
        flex-direction: column;
        gap: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .publication-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-profile-img {
        width: 130px;
        height: 130px;
    }
    
    .hero-profile-name h2 {
        font-size: 1.5rem;
    }
    
    .hero-title-line p {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats-footer {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        width: 100%;
        max-width: 220px;
    }
    
    .hero-social-corner {
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .hero-social-corner .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #059669;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #047857;
}

/* ===== SELECTION COLOR ===== */
::selection {
    background: #059669;
    color: white;
}

::-moz-selection {
    background: #059669;
    color: white;
>>>>>>> a06a22506e08b6e0cdd7eed6ae3a6bd4ded1d5a7
=======
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

/* Section Titles - Only Green */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: #059669;
}

.section-title i {
    margin-right: 1rem;
    color: #059669;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #059669;
    border-radius: 2px;
}

/* Section Subtitles - Black */
.section-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-brand i {
    font-size: 2rem;
    color: #059669;
}

.navbar h2 {
    font-weight: 700;
    font-size: 1.6rem;
    color: #1e293b;
}

.menu a {
    margin-left: 2rem;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #059669;
}

.nav-toggle {
    display: none;
    color: #1e293b;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* Very light green and sky blue overlay with white shades */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(220, 252, 231, 0.9) 0%,
        rgba(186, 230, 253, 0.9) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Social Links in Top Right Corner */
.hero-social-corner {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.hero-social-corner .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-social-corner .social-link.linkedin {
    background: #0077b5;
    color: white;
}

.hero-social-corner .social-link.github {
    background: #333;
    color: white;
}

.hero-social-corner .social-link.scholar {
    background: #4285f4;
    color: white;
}

.hero-social-corner .social-link.email {
    background: #ea4335;
    color: white;
}

.hero-social-corner .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #1e293b;
}

/* Profile Photo Container */
.hero-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 40px -10px rgba(5, 150, 105, 0.3);
}

.hero-profile-name h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-profile-name p {
    font-size: 1.1rem;
    color: #475569;
    margin: 0.2rem 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-profile-name p:first-of-type {
    font-weight: 600;
    color: #059669;
}

/* Hero Title Line with Colorful Keywords */
.hero-title-line {
    max-width: 900px;
    margin: 1.5rem auto 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
}

.hero-title-line p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.8;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

/* Colorful Keywords */
.keyword {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.keyword:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.keyword.sram {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border: 1px solid #3b82f6;
}

.keyword.imc {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid #10b981;
}

.keyword.designer {
    background: linear-gradient(135deg, #cffafe, #a5f3fc);
    color: #155e75;
    border: 1px solid #06b6d4;
}

/* Hero Stats Footer - Moved from About to Hero */
.hero-stats-footer {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.hero-stats-footer .stat-footer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    transition: all 0.3s ease;
}

.hero-stats-footer .stat-footer-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 30px -8px rgba(5, 150, 105, 0.2);
}

.hero-stats-footer .stat-footer-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #059669;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.hero-stats-footer .stat-footer-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1e293b;
    font-weight: 600;
}

/* Small NM text style - for making "nm" smaller in process nodes */
.small-nm {
    font-size: 0.65em;
    vertical-align: baseline;
    display: inline-block;
    margin-left: 0.5px;
    font-weight: 500;
    opacity: 0.9;
}

/* Alternative superscript style for small-nm - uncomment if you prefer this look */
/*
.small-nm {
    font-size: 0.6em;
    vertical-align: super;
    display: inline-block;
    margin-left: 1px;
    font-weight: 500;
}
*/

/* Resume Button Container - Middle */
.hero-button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    background: #059669;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(5, 150, 105, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -8px rgba(5, 150, 105, 0.4);
}

.btn-primary i {
    font-size: 1.1rem;
}

/* Plain Straight Border - Replaced Wave */
.hero-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399, #059669);
    z-index: 2;
    box-shadow: 0 -2px 10px rgba(5, 150, 105, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero-social-corner {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .hero-social-corner .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .hero-profile-name h2 {
        font-size: 2rem;
    }
    
    .hero-profile-name p {
        font-size: 1rem;
    }
    
    .hero-title-line {
        padding: 0.8rem 1.2rem;
    }
    
    .hero-title-line p {
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .hero-stats-footer {
        gap: 1rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .hero-stats-footer .stat-footer-number {
        font-size: 1.8rem;
    }
    
    .hero-stats-footer .stat-footer-label {
        font-size: 0.8rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-title-line p {
        flex-direction: column;
        align-items: center;
    }
    
    .keyword {
        width: fit-content;
    }
}
/* ===== ABOUT SECTION ===== */
.about-content {
    width: 100%;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.about-block {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.2rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: #f8fafc;
    transition: all 0.3s;
}

.about-block:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}

.block-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #059669;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.block-content {
    flex: 1;
}

.block-content p {
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* Highlight Blue */
.highlight-blue {
    color: #2563eb;
    font-weight: 600;
    background: #dbeafe;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.link-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f1f5f9;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    margin-top: 0.5rem;
}

.link-container i {
    color: #059669;
}

.faculty-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.faculty-link:hover {
    text-decoration: underline;
}

.tapeout-showcase {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tapeout-badge {
    background: #f1f5f9;
    color: #1e293b;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
}

.tapeout-badge i {
    color: #059669;
}

/* Colorful Skill Pills */
.skill-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.skill-pill {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.skill-pill:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Color Classes */
.color-1 { background: #fee2e2; color: #b91c1c; border-color: #ef4444; }
.color-2 { background: #fff3e0; color: #b45309; border-color: #f97316; }
.color-3 { background: #fef9c3; color: #854d0e; border-color: #fbbf24; }
.color-4 { background: #d1fae5; color: #065f46; border-color: #10b981; }
.color-5 { background: #dbeafe; color: #1e40af; border-color: #3b82f6; }
.color-6 { background: #f3e8ff; color: #6b21a8; border-color: #8b5cf6; }
.color-7 { background: #fce7f3; color: #9d174d; border-color: #ec4899; }
.color-8 { background: #cffafe; color: #155e75; border-color: #06b6d4; }
.color-9 { background: #fff1f2; color: #9f1239; border-color: #f43f5e; }
.color-10 { background: #f1f5f9; color: #334155; border-color: #64748b; }

.award-showcase {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.award-badge {
    background: #f1f5f9;
    color: #1e293b;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
}

.award-badge i {
    color: #059669;
}

.highlight-block {
    background: #f1f5f9;
    border-left: 4px solid #059669;
}

/* Stats Footer Removed from About Section */

/* ===== TABLE STYLING ===== */
.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    background: #059669;
    color: white;
    padding: 1.2rem 1rem;
    font-weight: 600;
    text-align: left;
    border-radius: 15px 15px 0 0;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

table td i {
    color: #059669;
    margin-right: 0.5rem;
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.15);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-year {
    background: #f1f5f9;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
}

.project-badge {
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #1e293b;
}

.project-badge.tapeout {
    background: #dbeafe;
    color: #1e3a8a;
}

.project-badge i {
    margin-right: 0.3rem;
    color: #059669;
}

.project-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
}

.project-subtitle {
    color: #475569;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.project-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
}

.result-item {
    background: #f1f5f9;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.result-item i {
    color: #059669;
}

.project-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.project-tools span {
    background: #f8fafc;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.highlight-card {
    border: 2px solid #059669;
}

/* ===== PUBLICATIONS SECTION ===== */
.publications-list {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.publication-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s;
}

.publication-item:last-child {
    border-bottom: none;
}

.publication-item:hover {
    background: #f8fafc;
    border-radius: 15px;
}

.pub-icon {
    font-size: 2rem;
    color: #059669;
}

.pub-content {
    flex: 1;
}

/* Paper titles - Light Purple */
.pub-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Authors - Black */
.pub-authors {
    color: #000000;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* Venue - Teal */
.pub-venue {
    font-style: italic;
    color: #0f766e;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* DOI - Orange */
.pub-doi {
    font-size: 0.9rem;
    color: #c2410c;
    font-weight: 600;
}

/* ===== SKILLS SECTION ===== */
.skills-container {
    display: grid;
    gap: 2rem;
}

.skill-category {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}

.skill-category h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.skill-category h3 i {
    color: #059669;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.skill-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ===== AWARDS GRID ===== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.award-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.award-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 35px -15px rgba(5, 150, 105, 0.2);
    border-color: #059669;
}

.award-card i {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
}

.award-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: #475569;
    font-size: 0.9rem;
}

/* ===== ACTIVITIES ===== */
.activities-grid {
    display: grid;
    gap: 1.2rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.activity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px -12px rgba(5, 150, 105, 0.2);
}

.activity-item i {
    font-size: 2rem;
    color: #059669;
}

.activity-item h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.3rem;
}

.activity-item p {
    color: #475569;
}

/* ===== INTERNSHIP ===== */
.internship-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.internship-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.internship-header i {
    font-size: 2.5rem;
    color: #059669;
}

.internship-header h3 {
    font-size: 1.6rem;
    color: #000000;
}

.internship-header h4 {
    color: #475569;
    font-weight: 500;
}

.internship-date {
    color: #059669;
    font-weight: 600;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #f1f5f9;
    border-radius: 30px;
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info, .reference-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
    transition: all 0.3s;
    padding: 0.5rem;
    border-radius: 12px;
}

.contact-item:hover {
    background: #f8fafc;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    width: 40px;
    color: #059669;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: #475569;
}

.reference-card h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.reference-item {
    display: flex;
    gap: 1.2rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.reference-item:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
}

.reference-item i {
    font-size: 1.8rem;
    color: #059669;
}

.reference-item h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.3rem;
}

.reference-item p {
    color: #475569;
    margin-bottom: 0.2rem;
}

.reference-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.reference-item a:hover {
    text-decoration: underline;
    color: #059669;
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: white;
    padding: 3rem;
    text-align: center;
    border-top: 4px solid #059669;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.footer-links a {
    color: white;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: white;
    background: #059669;
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-profile-img {
        width: 180px;
        height: 180px;
    }
    
    .hero-profile-name h2 {
        font-size: 2.2rem;
    }
    
    .hero-stats-footer {
        gap: 2rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        min-width: 130px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .menu {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .menu a {
        margin-left: 0;
    }
    
    .nav-toggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .hero {
        padding: 5rem 1rem 4rem;
    }
    
    .hero-social-corner {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .hero-social-corner .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .hero-profile-name h2 {
        font-size: 1.8rem;
    }
    
    .hero-profile-name p {
        font-size: 1rem;
    }
    
    .hero-title-line {
        padding: 0.8rem 1rem;
    }
    
    .hero-title-line p {
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .keyword {
        padding: 0.2rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero-stats-footer {
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .hero-stats-footer .stat-footer-item {
        min-width: 120px;
        padding: 0.8rem 1rem;
    }
    
    .hero-stats-footer .stat-footer-number {
        font-size: 2rem;
    }
    
    .about-block {
        flex-direction: column;
        gap: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .publication-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-profile-img {
        width: 130px;
        height: 130px;
    }
    
    .hero-profile-name h2 {
        font-size: 1.5rem;
    }
    
    .hero-title-line p {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats-footer {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        width: 100%;
        max-width: 220px;
    }
    
    .hero-social-corner {
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .hero-social-corner .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #059669;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #047857;
}

/* ===== SELECTION COLOR ===== */
::selection {
    background: #059669;
    color: white;
}

::-moz-selection {
    background: #059669;
    color: white;
>>>>>>> a06a22506e08b6e0cdd7eed6ae3a6bd4ded1d5a7
}