/* =================================================================== */
/* ====================== SECTION: 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: TYPOGRAPHY ======================== */
/* =================================================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: #059669;
    letter-spacing: -0.02em;
}

.section-title i {
    margin-right: 1rem;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.5rem;
    border-radius: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #059669;
    border-radius: 2px;
    opacity: 0.5;
}

/* =================================================================== */
/* ====================== SECTION: 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 30px 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;
    filter: drop-shadow(0 4px 6px rgba(5, 150, 105, 0.2));
}

.navbar h2 {
    font-weight: 700;
    font-size: 1.6rem;
    color: #1e293b;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e293b, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #059669, #10b981);
    transition: width 0.3s ease;
}

.menu a:hover {
    color: #059669;
}

.menu a:hover::before {
    width: 100%;
}

/* Hamburger Menu Button */
.nav-toggle {
    display: none;
    color: #1e293b;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle:hover {
    color: #059669;
}

/* =================================================================== */
/* ====================== SECTION: HERO ============================== */
/* =================================================================== */

.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;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(220, 252, 231, 0.95) 0%,
        rgba(186, 230, 253, 0.95) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
    z-index: 1;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

.hero-social-corner {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.hero-social-corner .social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-social-corner .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.hero-social-corner .social-link:hover::before {
    left: 100%;
}

.hero-social-corner .social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: white;
}

.hero-social-corner .social-link.github {
    background: linear-gradient(135deg, #333, #24292e);
    color: white;
}

.hero-social-corner .social-link.scholar {
    background: linear-gradient(135deg, #4285f4, #0f9d58);
    color: white;
}

.hero-social-corner .social-link.email {
    background: linear-gradient(135deg, #ea4335, #fbbc04);
    color: white;
}

.hero-social-corner .social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #1e293b;
}

.hero-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-profile-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.hero-profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 35px 50px -15px rgba(5, 150, 105, 0.4);
}

.hero-profile-name h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    letter-spacing: -0.02em;
}

.hero-profile-name p {
    font-size: 1.2rem;
    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;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

/* ===== HERO ACTION BUTTONS ===== */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0 2rem 0;
}

.action-btn {
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 18px -8px rgba(0,0,0,0.1);
    border: none;
}

.action-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-3px);
}

.action-btn:hover i {
    transform: translateX(3px) scale(1.05);
}

/* View Tapeouts Button - Dark Blue */
.action-btn.tapeout-btn {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    box-shadow: 0 8px 20px -5px rgba(37, 99, 235, 0.4);
}

.action-btn.tapeout-btn i {
    color: white;
}

.action-btn.tapeout-btn:hover {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.6);
}

/* Get In Touch Button - Purple */
.action-btn.contact-btn {
    background: linear-gradient(135deg, #6b21a8, #8b5cf6);
    color: white;
    box-shadow: 0 8px 20px -5px rgba(139, 92, 246, 0.4);
}

.action-btn.contact-btn i {
    color: white;
}

.action-btn.contact-btn:hover {
    background: linear-gradient(135deg, #7e22ce, #a78bfa);
    box-shadow: 0 15px 30px -5px rgba(139, 92, 246, 0.6);
}

/* Download Resume Button - Dark Teal */
.action-btn.resume-btn {
    background: linear-gradient(135deg, #115e59, #14b8a6);
    color: white;
    box-shadow: 0 8px 20px -5px rgba(20, 184, 166, 0.4);
}

.action-btn.resume-btn i {
    color: white;
}

.action-btn.resume-btn:hover {
    background: linear-gradient(135deg, #0f766e, #2dd4bf);
    box-shadow: 0 15px 30px -5px rgba(20, 184, 166, 0.6);
}

.hero-stats-footer {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.hero-stats-footer .stat-footer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    padding: 1.5rem 2.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stats-footer .stat-footer-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 50px -15px rgba(5, 150, 105, 0.3);
}

.hero-stats-footer .stat-footer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #059669;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
}

.hero-stats-footer .stat-footer-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1e293b;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.small-nm {
    font-size: 0.65em;
    vertical-align: baseline;
    display: inline-block;
    margin-left: 1px;
    font-weight: 500;
    opacity: 0.8;
}

.hero-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399, #059669);
    background-size: 300% 100%;
}

/* =================================================================== */
/* ====================== SECTION: ABOUT (PREMIUM) =================== */
/* =================================================================== */

.about-premium {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: white;
    border-radius: 40px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.about-premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Left Column */
.about-left {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.profile-highlight {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 15px 25px -10px rgba(5, 150, 105, 0.4);
}

.profile-icon i {
    font-size: 2.5rem;
    color: white;
}

.profile-highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.profile-title {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.profile-badge {
    display: inline-block;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.4rem 1.5rem;
    border-radius: 40px;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.profile-badge span {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Keywords Showcase - Moved from Hero */
.keywords-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0 1rem;
    padding: 0.5rem;
}

.keyword {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.keyword:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.3);
}

.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;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.expertise-tag {
    background: white;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px -2px rgba(0,0,0,0.05);
}

.expertise-tag:hover {
    background: #059669;
    color: white;
    border-color: #059669;
    transform: translateY(-2px);
}

.supervisor-card {
    display: flex;
    gap: 1.2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.supervisor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(5, 150, 105, 0.15);
    border-color: #059669;
}

.supervisor-card i {
    font-size: 2rem;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 1rem;
    border-radius: 16px;
    height: fit-content;
}

.supervisor-card h4 {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.supervisor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.2rem;
}

.supervisor-lab {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.supervisor-link {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s ease;
}

.supervisor-link:hover {
    gap: 0.6rem;
    color: #047857;
}

/* Right Column */
.about-right {
    position: relative;
    z-index: 1;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.achievement-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.05);
}

.achievement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -12px rgba(5, 150, 105, 0.2);
    border-color: #059669;
}

.achievement-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 15px -5px rgba(5, 150, 105, 0.3);
}

.achievement-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.2rem;
}

.achievement-detail {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.achievement-tags span {
    background: #f1f5f9;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.achievement-tags span:hover {
    background: #059669;
    color: white;
    border-color: #059669;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 60px;
    padding: 1.2rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #059669;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: #e2e8f0;
}

/* Research Statement */
.research-statement {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid rgba(5, 150, 105, 0.2);
    position: relative;
}

.research-statement i {
    font-size: 2rem;
    color: #059669;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.research-statement p {
    font-size: 1rem;
    line-height: 1.7;
    color: #1e293b;
    font-style: italic;
    padding-left: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.8rem;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .keyword {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .keywords-showcase {
        gap: 0.6rem;
        margin: 1rem 0 0.8rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 30px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .profile-icon {
        width: 70px;
        height: 70px;
    }
    
    .profile-icon i {
        font-size: 2rem;
    }
    
    .profile-highlight h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .keyword {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .about-premium {
        padding: 1.2rem;
    }
    
    .supervisor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .achievement-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .achievement-icon {
        margin-bottom: 0.5rem;
    }
    
    .achievement-tags {
        justify-content: center;
    }
    
    .research-statement p {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
}

/* =================================================================== */
/* ====================== SECTION: ACADEMIC ========================= */
/* =================================================================== */

.academic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.academic-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    border-left: 6px solid #059669;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.academic-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(5,150,105,0.05), rgba(16,185,129,0.05));
    border-radius: 0 0 0 100px;
}

.academic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px rgba(5, 150, 105, 0.3);
}

.academic-year {
    display: inline-block;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 15px -5px rgba(5, 150, 105, 0.3);
}

.academic-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.academic-institution {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.grade-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #93c5fd;
    box-shadow: 0 4px 10px -2px rgba(37, 99, 235, 0.2);
}

/* =================================================================== */
/* ====================== SECTION: RESEARCH PROJECTS ================= */
/* =================================================================== */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.premium-card {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    height: fit-content;
    position: relative;
}

.premium-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 50px -15px rgba(5, 150, 105, 0.2);
    border-color: #059669;
}

.highlight-card {
    border: 2px solid #059669;
    box-shadow: 0 20px 40px -10px rgba(5, 150, 105, 0.2);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: 'FEATURED';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #059669;
    color: white;
    padding: 0.3rem 3rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.3);
}

/* Project Preview Section */
.project-preview {
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    position: relative;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-year {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    display: inline-block;
}

.project-badge {
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.project-badge.tapeout {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e3a8a;
    border: 1px solid #93c5fd;
}

.project-badge.fabrication {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border: 1px solid #fbbf24;
}

.project-badge.testing {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0369a1;
    border: 1px solid #38bdf8;
}

.project-badge.testing i {
    color: #0369a1;
}

.project-badge.development {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4338ca;
    border: 1px solid #818cf8;
}

.project-badge.development i {
    color: #4338ca;
}

.project-badge.review {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4338ca;
    border: 1px solid #818cf8;
}

.project-badge.review i {
    color: #4338ca;
}

.project-badge.published {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid #10b981;
}

.project-badge.published i {
    color: #065f46;
}

.project-badge i {
    font-size: 0.8rem;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.project-subtitle {
    color: #059669;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.project-institution {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.project-institution i {
    color: #059669;
    font-size: 0.9rem;
}

.project-preview-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.preview-stat {
    background: rgba(5, 150, 105, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.preview-stat i {
    font-size: 0.8rem;
}

.project-more-btn {
    background: transparent;
    border: 1px solid #059669;
    color: #059669;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    width: auto;
}

.project-more-btn:hover {
    background: #059669;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -5px rgba(5, 150, 105, 0.3);
}

.project-more-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.project-more-btn.active i {
    transform: rotate(180deg);
}

/* Project Details Section */
.project-details {
    padding: 0 2rem 2rem;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
}

.project-details.hidden {
    display: none;
}

.details-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #059669, transparent);
    margin: 1rem 0 1.5rem;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h4 {
    font-size: 1rem;
    color: #059669;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.detail-section h4 i {
    font-size: 1rem;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.3rem;
    border-radius: 8px;
}

.detail-section p {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-left: 1.8rem;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-left: 1.8rem;
}

.tool-tags span {
    background: #f1f5f9;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    cursor: default;
}

.tool-tags span:hover {
    background: #059669;
    color: white;
    border-color: #059669;
    transform: translateY(-2px);
}

.results-list {
    list-style: none;
    padding: 0;
    margin-left: 1.8rem;
}

.results-list li {
    padding: 0.4rem 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.95rem;
    color: #334155;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.results-list li:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 700;
    color: #1e293b;
    min-width: 140px;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin-left: 1.8rem;
}

.advantages-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #334155;
}

.advantages-list li::before {
    content: '✓';
    color: #059669;
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Status Badge for Testing */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    color: #856404;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #ffc107;
    margin-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.status-badge i {
    font-size: 0.9rem;
    color: #856404;
}

/* Status Badge for Testing (blue variant) */
.status-badge.testing {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0369a1;
    border: 1px solid #38bdf8;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.status-badge.testing i {
    color: #0369a1;
}

/* Status Badge for Review (purple variant) */
.status-badge.review {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4338ca;
    border: 1px solid #818cf8;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.status-badge.review i {
    color: #4338ca;
}

.status-text {
    color: #4b5563;
    font-style: italic;
    background: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    border-radius: 12px;
    border-left: 3px solid #f59e0b;
    margin-left: 1.8rem;
}

.status-text.review {
    border-left-color: #818cf8;
}

.status-text.testing {
    border-left-color: #38bdf8;
}

/* Publication Badge */
.publication-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #334155;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #94a3b8;
    margin-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.publication-badge i {
    color: #059669;
}

.pub-link {
    margin-left: 1.8rem;
}

.pub-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #059669;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 6px 15px -5px rgba(5, 150, 105, 0.4);
}

.pub-button i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    color: white;
}

.pub-button:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(5, 150, 105, 0.5);
}

.pub-button:hover i {
    transform: translateX(3px);
}

/* Animation delays removed - steady look */
.premium-card:nth-child(1),
.premium-card:nth-child(2),
.premium-card:nth-child(3),
.premium-card:nth-child(4),
.premium-card:nth-child(5),
.premium-card:nth-child(6),
.premium-card:nth-child(7),
.premium-card:nth-child(8) {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-card::before {
        font-size: 0.6rem;
        padding: 0.2rem 2.5rem;
        top: 15px;
        right: -25px;
    }
    
    .result-label {
        min-width: 120px;
    }
    
    .project-preview {
        padding: 1.5rem;
    }
    
    .project-details {
        padding: 0 1.5rem 1.5rem;
    }
    
    .detail-section p,
    .tool-tags,
    .results-list,
    .advantages-list,
    .status-badge,
    .status-badge.testing,
    .status-badge.review,
    .publication-badge,
    .pub-link,
    .status-text {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .project-title {
        font-size: 1.2rem;
    }
    
    .result-label {
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .results-list li {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-more-btn {
        width: 100%;
        justify-content: center;
    }
    
    .status-badge,
    .status-badge.testing,
    .status-badge.review,
    .publication-badge {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
}

/* =================================================================== */
/* ====================== SECTION: PUBLICATIONS ===================== */
/* =================================================================== */

.publications-list {
    background: white;
    border-radius: 40px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.publication-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.publication-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #059669, #10b981, #34d399);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.publication-item:last-child {
    border-bottom: none;
}

.publication-item:hover {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    transform: translateX(8px);
    box-shadow: 0 15px 30px -12px rgba(5, 150, 105, 0.15);
}

.publication-item:hover::before {
    transform: translateX(0);
}

/* First paper - Light Purple accent */
.publication-item:first-child {
    border-left: 4px solid #8b5cf6;
}

.pub-icon {
    font-size: 2.2rem;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.publication-item:hover .pub-icon {
    background: #059669;
    color: white;
    transform: rotate(360deg) scale(1.1);
}

.pub-content {
    flex: 1;
}

.pub-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.publication-item:hover .pub-title {
    color: #7c3aed;
}

.pub-authors {
    color: #000000;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.pub-venue {
    font-style: italic;
    color: #0f766e;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.pub-doi {
    margin-top: 0.8rem;
}

/* Publication Button Style */
.pub-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    box-shadow: 0 6px 15px -5px rgba(5, 150, 105, 0.4);
}

.pub-button i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.pub-button:hover {
    background: #047857;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px -8px rgba(5, 150, 105, 0.5);
}

.pub-button:hover i {
    transform: translateX(4px);
}

/* Paper ID Style (for communicated/under review papers) */
.paper-id {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px dashed #94a3b8;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.paper-id::before {
    content: '📄';
    font-size: 0.9rem;
    opacity: 0.7;
}

.publication-item:hover .paper-id {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    color: #1e293b;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -4px rgba(5, 150, 105, 0.2);
}

/* Responsive Design for Publications */
@media (max-width: 768px) {
    .publications-list {
        padding: 1.5rem;
    }
    
    .publication-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .pub-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .pub-title {
        font-size: 1.1rem;
    }
    
    .pub-button, .paper-id {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .publications-list {
        padding: 1rem;
    }
    
    .publication-item {
        padding: 1rem;
    }
    
    .pub-title {
        font-size: 1rem;
    }
    
    .pub-authors, .pub-venue {
        font-size: 0.85rem;
    }
    
    .pub-button, .paper-id {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}
/* =================================================================== */
/* ====================== SECTION: SKILLS =========================== */
/* =================================================================== */

.skills-container {
    display: grid;
    gap: 2.5rem;
}

.skill-category {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.skill-category:hover {
    border-color: #059669;
    box-shadow: 0 25px 50px -15px rgba(5, 150, 105, 0.2);
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.skill-category h3 i {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.5rem;
    border-radius: 12px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    cursor: default;
}

.skill-tag:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px -8px currentColor;
}

.color-1 { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #b91c1c; border-color: #ef4444; }
.color-2 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); color: #b45309; border-color: #f97316; }
.color-3 { background: linear-gradient(135deg, #fef9c3, #fde047); color: #854d0e; border-color: #fbbf24; }
.color-4 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; border-color: #10b981; }
.color-5 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1e40af; border-color: #3b82f6; }
.color-6 { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); color: #6b21a8; border-color: #8b5cf6; }
.color-7 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #9d174d; border-color: #ec4899; }
.color-8 { background: linear-gradient(135deg, #cffafe, #a5f3fc); color: #155e75; border-color: #06b6d4; }
.color-9 { background: linear-gradient(135deg, #fff1f2, #ffe4e6); color: #9f1239; border-color: #f43f5e; }
.color-10 { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); color: #334155; border-color: #64748b; }

/* =================================================================== */
/* ====================== SECTION: AWARDS ============================ */
/* =================================================================== */

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.award-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    height: 100%;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px rgba(5, 150, 105, 0.3);
    border-color: #059669;
}

.award-image-wrapper {
    width: 100%;
    height: 250px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 4px solid #059669;
    overflow: hidden;
}

.award-card .award-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.award-card:hover .award-image {
    transform: scale(1.03);
}

.award-details {
    padding: 1.8rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.award-details i {
    font-size: 2.2rem;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.8rem;
    border-radius: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1rem;
}

.award-card:hover .award-details i {
    background: #059669;
    color: white;
}

.award-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.award-location {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding: 0.3rem 1.2rem;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(5, 150, 105, 0.2);
    width: fit-content;
}

.award-description {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.3rem;
}

/* =================================================================== */
/* ====================== SECTION: CHIP GALLERY ====================== */
/* =================================================================== */

.chip-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.chip-gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #475569;
    font-weight: 500;
}

.chip-gallery-intro .highlight-blue {
    color: #059669;
    font-weight: 700;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.2rem 1rem;
    border-radius: 30px;
    display: inline-block;
    margin: 0 0.2rem;
}

.chip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.chip-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    height: 100%;
}

.chip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px rgba(5, 150, 105, 0.3);
    border-color: #059669;
}

.chip-image-wrapper {
    width: 100%;
    height: 220px;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 4px solid #059669;
    overflow: hidden;
}

.chip-card .chip-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.chip-card:hover .chip-image {
    transform: scale(1.03);
}

.chip-details {
    padding: 1.8rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.chip-details i {
    font-size: 2.2rem;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.8rem;
    border-radius: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1rem;
}

.chip-card:hover .chip-details i {
    background: #059669;
    color: white;
}

.chip-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.chip-location {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding: 0.3rem 1.2rem;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(5, 150, 105, 0.2);
    width: fit-content;
}

.chip-description {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.chip-stats {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.chip-stat {
    background: rgba(5, 150, 105, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.chip-stat i {
    font-size: 0.85rem;
    padding: 0;
    margin: 0;
    background: transparent;
    color: #059669;
}

.chip-gallery-footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: #475569;
    padding: 1.5rem;
    background: rgba(5, 150, 105, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

/* =================================================================== */
/* ====================== SECTION: MEDIA ============================= */
/* =================================================================== */

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.media-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    height: 100%;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px rgba(5, 150, 105, 0.3);
    border-color: #059669;
}

.media-image-wrapper {
    width: 100%;
    height: 220px;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    border-bottom: 4px solid #059669;
    overflow: hidden;
}

.media-image-wrapper img,
.media-image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.media-image-wrapper img {
    cursor: pointer;
}

.media-image-wrapper video {
    background: #000;
    cursor: pointer;
}

.media-card:hover .media-image-wrapper img,
.media-card:hover .media-image-wrapper video {
    transform: scale(1.03);
}

.media-details {
    padding: 1.8rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.media-details i {
    font-size: 2.2rem;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.8rem;
    border-radius: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1rem;
}

.media-card:hover .media-details i {
    background: #059669;
    color: white;
}

.media-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.media-venue {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding: 0.3rem 1.2rem;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(5, 150, 105, 0.2);
    width: fit-content;
}

.media-description {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.media-description small {
    color: #94a3b8;
    font-size: 0.8rem;
    display: inline-block;
    margin-left: 0.3rem;
    background: #f1f5f9;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

/* =================================================================== */
/* ====================== ANIMATIONS ================================ */
/* =================================================================== */

/* All animations removed for steady look */

.award-card:nth-child(1),
.award-card:nth-child(2),
.award-card:nth-child(3),
.award-card:nth-child(4),
.award-card:nth-child(5),
.award-card:nth-child(6),
.award-card:nth-child(7),
.award-card:nth-child(8),
.award-card:nth-child(9),
.award-card:nth-child(10),
.award-card:nth-child(11),
.award-card:nth-child(12),
.award-card:nth-child(13),
.award-card:nth-child(14),
.award-card:nth-child(15),
.award-card:nth-child(16),
.chip-card:nth-child(1),
.chip-card:nth-child(2),
.chip-card:nth-child(3),
.chip-card:nth-child(4),
.media-card:nth-child(1),
.media-card:nth-child(2),
.media-card:nth-child(3),
.media-card:nth-child(4),
.media-card:nth-child(5),
.media-card:nth-child(6),
.media-card:nth-child(7),
.media-card:nth-child(8),
.media-card:nth-child(9),
.media-card:nth-child(10),
.media-card:nth-child(11),
.media-card:nth-child(12),
.media-card:nth-child(13),
.media-card:nth-child(14),
.media-card:nth-child(15),
.media-card:nth-child(16) {
    opacity: 1;
}

/* =================================================================== */
/* ====================== IMAGE MODAL STYLES ========================= */
/* =================================================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f5f9;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.modal-caption {
    margin: 20px auto;
    display: block;
    width: 80%;
    max-width: 800px;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =================================================================== */
/* ====================== SECTION: CONTACT =========================== */
/* =================================================================== */

/* Mobile First Approach (up to 767px) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.5rem;
    width: 100%;
}

.contact-card, .form-card {
    background: white;
    border-radius: 24px; /* Slightly smaller radius for mobile */
    padding: 1.5rem; /* Reduced padding for mobile */
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-card:hover, .form-card:hover {
    border-color: #059669;
    box-shadow: 0 25px 50px -15px rgba(5, 150, 105, 0.15);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
}

.contact-item:hover {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    transform: translateX(3px);
}

.contact-item i {
    font-size: 1.5rem; /* Smaller icon for mobile */
    width: 40px;
    height: 40px;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.5rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.contact-item p {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-word;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    word-break: break-all;
    display: inline-block;
}

.contact-item a:hover {
    color: #059669;
    text-decoration: underline;
}

.reference-item-small {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 1.2rem;
    margin-top: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.reference-item-small:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(5, 150, 105, 0.15);
    border-color: #059669;
}

.reference-item-small h4 {
    font-size: 1.1rem;
    color: #059669;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reference-item-small h4 i {
    font-size: 1.1rem;
    color: #059669;
    background: transparent;
    padding: 0;
    width: auto;
    height: auto;
}

.reference-item-small p {
    color: #475569;
    margin-bottom: 0.4rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

.reference-item-small i {
    color: #059669;
    width: 18px;
    margin-right: 0.3rem;
    font-size: 0.9rem;
    background: transparent;
    padding: 0;
    display: inline-block;
}

.reference-item-small a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 0.3rem;
}

.reference-item-small a:hover {
    color: #059669;
    text-decoration: underline;
}

.form-heading {
    font-size: 1.2rem; /* Smaller for mobile */
    margin-bottom: 1.5rem;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.form-heading i {
    background: rgba(5, 150, 105, 0.1);
    padding: 0.6rem;
    border-radius: 12px;
    font-size: 1.2rem;
    color: #059669;
    width: auto;
    height: auto;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.2rem; /* Reduced for mobile */
}

.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    color: #1e293b;
    font-size: 0.9rem;
}

.required {
    color: #ef4444;
    margin-left: 0.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem; /* Reduced padding for mobile */
    border: 1px solid #cbd5e1;
    border-radius: 16px; /* Slightly smaller radius */
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem; /* Smaller font for mobile */
    transition: all 0.3s ease;
    background: #f8fafc;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #059669;
    background: white;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group textarea {
    min-height: 120px; /* Slightly smaller for mobile */
    resize: vertical;
    border-radius: 16px;
}

.send-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem; /* Reduced padding for mobile */
    border-radius: 40px; /* Slightly smaller radius */
    font-weight: 600; /* Lighter weight for mobile */
    font-size: 1rem; /* Smaller font for mobile */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 10px 20px -8px rgba(5, 150, 105, 0.3);
    width: 100%; /* Full width on mobile */
}

.send-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.send-btn:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px rgba(5, 150, 105, 0.4);
}

.send-btn:hover i {
    transform: translateX(5px);
}

/* Tablet Styles (640px to 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    .contact-card, .form-card {
        padding: 1.8rem;
    }
    
    .contact-item i {
        font-size: 1.6rem;
        width: 45px;
        height: 45px;
    }
    
    .form-heading {
        font-size: 1.3rem;
    }
    
    .send-btn {
        padding: 1rem 2rem;
    }
}

/* Desktop Styles (768px and above) - Restore original layout */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr; /* Back to 2 columns */
        gap: 2rem;
    }
    
    .contact-card, .form-card {
        border-radius: 40px; /* Original radius */
        padding: 2.5rem; /* Original padding */
    }
    
    .contact-item {
        gap: 1.2rem;
        margin-bottom: 1.8rem;
        padding: 0.8rem;
        border-radius: 16px;
    }
    
    .contact-item i {
        font-size: 1.8rem; /* Original size */
        width: 50px;
        height: 50px;
        padding: 0.8rem;
        border-radius: 16px;
    }
    
    .contact-item h4 {
        font-size: 1.1rem; /* Original size */
    }
    
    .contact-item p {
        font-size: 0.95rem; /* Original size */
    }
    
    .reference-item-small {
        border-radius: 25px; /* Original radius */
        padding: 1.8rem; /* Original padding */
        margin-top: 1.5rem;
    }
    
    .reference-item-small h4 {
        font-size: 1.2rem; /* Original size */
        margin-bottom: 1rem;
    }
    
    .reference-item-small p {
        font-size: 0.95rem; /* Original size */
        margin-bottom: 0.5rem;
    }
    
    .form-heading {
        font-size: 1.5rem; /* Original size */
        margin-bottom: 2rem;
        gap: 0.8rem;
    }
    
    .form-heading i {
        padding: 0.8rem;
        border-radius: 16px;
        font-size: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.8rem; /* Original spacing */
    }
    
    .form-group label {
        font-size: 0.95rem; /* Original size */
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem 1.5rem; /* Original padding */
        border-radius: 30px; /* Original radius */
        font-size: 0.95rem; /* Original size */
    }
    
    .form-group textarea {
        min-height: 140px; /* Original height */
        border-radius: 25px;
    }
    
    .send-btn {
        padding: 1.2rem 2.8rem; /* Original padding */
        border-radius: 60px; /* Original radius */
        font-weight: 700; /* Original weight */
        font-size: 1.1rem; /* Original size */
        width: auto; /* Auto width on desktop */
        display: inline-flex;
    }
    
    .send-btn i {
        font-size: 1.2rem; /* Original size */
    }
}

/* Large Desktop Styles (1024px and above) */
@media (min-width: 1024px) {
    .contact-card, .form-card {
        padding: 3rem; /* Slightly larger for big screens */
    }
}

/* Ensure container doesn't cause overflow */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}
/* =================================================================== */
/* ====================== GO TO TOP BUTTON =========================== */
/* =================================================================== */

.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: 2px solid white;
}

.go-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

.go-to-top:hover {
    background: linear-gradient(135deg, #047857, #059669);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(5, 150, 105, 0.4);
}

.go-to-top i {
    transition: transform 0.3s ease;
}

.go-to-top:hover i {
    transform: translateY(-3px);
}

/* =================================================================== */
/* ====================== SECTION: FOOTER =========================== */
/* =================================================================== */

footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 6px solid #059669;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5,150,105,0.1), transparent 70%);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #cbd5e1;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: 1rem;
    padding: 0.5rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.footer-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    color: white;
    font-size: 1.3rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-links a:hover {
    color: white;
    background: #059669;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px -5px rgba(5, 150, 105, 0.4);
}

/* =================================================================== */
/* ====================== SECTION: RESPONSIVE ======================= */
/* =================================================================== */

@media (max-width: 1200px) {
    .media-grid {
        gap: 1.5rem;
    }
    
    .media-image-wrapper {
        height: 200px;
        padding: 1rem;
    }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid,
    .chip-grid,
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .media-image-wrapper {
        height: 180px;
    }
    
    .media-details {
        padding: 1.5rem;
    }
    
    .media-details h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Navbar mobile styles */
    .navbar {
        position: relative;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(5, 150, 105, 0.1);
        z-index: 1000;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu a {
        padding: 0.8rem 2rem;
        width: 100%;
        text-align: left;
    }
    
    .menu a::before {
        display: none;
    }
    
    .awards-grid,
    .chip-grid,
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .award-image-wrapper,
    .chip-image-wrapper,
    .media-image-wrapper {
        height: 220px;
    }
    
    .award-details,
    .chip-details,
    .media-details {
        padding: 1.5rem;
    }
    
    .chip-gallery-intro {
        font-size: 1.1rem;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
        width: 50px;
        height: 50px;
    }
    
    .modal-caption {
        width: 90%;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .media-image-wrapper {
        height: 220px;
        padding: 1.2rem;
    }
    
    .media-details i {
        font-size: 2rem;
        padding: 0.7rem;
    }
    
    .media-venue {
        font-size: 0.85rem;
        padding: 0.25rem 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card, .form-card {
        padding: 2rem;
    }
    
    .go-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 20px;
        right: 20px;
    }
    
    .go-to-top.show {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .hero-profile-name h2 {
        font-size: 1.8rem;
    }
    
    .hero-profile-name p {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats-footer .stat-footer-item {
        width: 100%;
        max-width: 250px;
        padding: 1rem 1.5rem;
    }
    
    .hero-stats-footer .stat-footer-number {
        font-size: 2rem;
    }
    
    .hero-stats-footer .stat-footer-label {
        font-size: 0.9rem;
    }
    
    .award-image-wrapper,
    .chip-image-wrapper,
    .media-image-wrapper {
        height: 200px;
        padding: 1rem;
    }
    
    .award-details,
    .chip-details,
    .media-details {
        padding: 1.2rem;
    }
    
    .award-details h4,
    .chip-details h3,
    .media-details h3 {
        font-size: 1.1rem;
    }
    
    .award-details i,
    .chip-details i,
    .media-details i {
        font-size: 2rem;
        padding: 0.6rem;
    }
    
    .chip-stats {
        gap: 0.5rem;
    }
    
    .chip-stat {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .chip-gallery-intro {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .chip-gallery-footer {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .modal-content {
        max-width: 100vw;
        max-height: 75vh;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
    
    .modal-caption {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .media-image-wrapper {
        height: 200px;
        padding: 1rem;
    }
    
    .media-details {
        padding: 1.2rem;
    }
    
    .media-details h3 {
        font-size: 1rem;
    }
    
    .media-details i {
        font-size: 1.8rem;
        padding: 0.6rem;
    }
    
    .media-description {
        font-size: 0.9rem;
    }
    
    .media-description small {
        font-size: 0.75rem;
        padding: 0.15rem 0.4rem;
    }
    
    .go-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }
    
    .go-to-top.show {
        bottom: 20px;
    }
}

/* =================================================================== */
/* ====================== SECTION: SCROLLBAR ======================== */
/* =================================================================== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 6px;
    border: 3px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #047857, #059669);
}

/* =================================================================== */
/* ====================== SECTION: SELECTION ======================== */
/* =================================================================== */

::selection {
    background: #059669;
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background: #059669;
    color: white;
    text-shadow: none;
}

/* =================================================================== */
/* ====================== PRINT STYLES ============================== */
/* =================================================================== */

@media print {
    .media-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .media-image-wrapper {
        background: #f5f5f5 !important;
    }
    
    .media-details i {
        color: black !important;
        background: none !important;
    }
    
    .go-to-top,
    .nav-toggle,
    .modal {
        display: none !important;
    }
}