/* ==========================================================================
   DESIGN SYSTEM TOKENS & RESET
   ========================================================================== */

:root {
    --bg-primary: #080C14;
    --bg-secondary: #0F1626;
    --bg-glass: rgba(15, 22, 38, 0.7);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Brand Colors */
    --android-green: #3DDC84;
    --android-green-glow: rgba(61, 220, 132, 0.35);
    --accent-blue: #00E5FF;
    --accent-purple: #A855F7;
    --accent-orange: #FF8A65;
    
    /* Font Families */
    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--android-green);
}

/* Background Glow Blobs */
.glow-blobs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    animation: float-blob 20s infinite alternate ease-in-out;
}

.blob-1 {
    background-color: var(--android-green);
    top: -100px;
    left: -200px;
}

.blob-2 {
    background-color: var(--accent-blue);
    top: 50%;
    right: -250px;
    animation-delay: -5s;
}

.blob-3 {
    background-color: var(--accent-purple);
    bottom: -100px;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float-blob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.1); }
}

/* ==========================================================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */

.section-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 24px;
}

@media (max-width: 768px) {
    .section-container {
        padding: 60px 16px;
    }
}

.section-tag {
    display: inline-block;
    color: var(--android-green);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--android-green) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--android-green);
    color: #05050A;
}

.btn-primary:hover {
    background-color: #58ee9a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--android-green-glow);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-icon-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.btn-icon-only:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--android-green);
    transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 12, 20, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-fast);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-badge {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--android-green) 0%, var(--accent-blue) 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(61, 220, 132, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.logo:hover .logo-badge {
    box-shadow: 0 6px 16px rgba(0, 229, 255, 0.35);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.logo-android-svg {
    width: 22px;
    height: 22px;
    color: #080C14;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-android-svg {
    transform: rotate(-12deg) scale(1.08);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.logo-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    transition: var(--transition-fast);
}

.logo-name-light {
    font-weight: 300;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
    transition: var(--transition-fast);
}

/* Responsive Logo adjustments */
@media (max-width: 768px) {
    .logo-name {
        font-size: 1rem;
    }
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .logo {
        gap: 10px;
    }
    .logo-badge {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }
    .logo-android-svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .logo-subtitle {
        display: none; /* Hide subtitle on small screens to save valuable header space */
    }
    .logo-name {
        font-size: 1.05rem; /* make name slightly more prominent since subtitle is hidden */
    }
}

@media (max-width: 360px) {
    .logo-name-light {
        display: none; /* Only show "Ahmed" on very narrow screens (e.g., iPhone SE) to prevent burger menu overlap */
    }
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--android-green);
}

.nav-btn {
    background-color: rgba(61, 220, 132, 0.1);
    color: var(--android-green);
    border: 1px solid rgba(61, 220, 132, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background-color: var(--android-green);
    color: #05050A;
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.2);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-glass);
    z-index: 999;
    padding: 100px 32px 32px 32px;
    transition: var(--transition-smooth);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.drawer-link:hover {
    color: var(--android-green);
}

.drawer-btn {
    display: block;
    text-align: center;
    background-color: var(--android-green);
    color: #05050A;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 24px;
}

/* Hamburger active animation */
.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero-section {
    padding-top: 85px; /* Accounts for fixed header height (~80px) */
    position: relative;
    overflow: hidden;
}

.hero-section .section-container {
    padding-top: 55px; /* Reduces huge empty space above hero content, balanced for all screen sizes */
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 75px; /* Mobile header is slightly shorter */
    }
    .hero-section .section-container {
        padding-top: 20px;
        padding-bottom: 50px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.badge-container {
    margin-bottom: 24px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(61, 220, 132, 0.08);
    color: var(--android-green);
    border: 1px solid rgba(61, 220, 132, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--android-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--android-green);
}

.animate-pulse {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 32px;
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width: 992px) {
    .hero-subtitle {
        text-align: center;
    }
}

.name-highlight {
    color: var(--text-primary);
    font-weight: 600;
}

.quick-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .quick-contacts {
        justify-content: center;
    }
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-item.copyable {
    cursor: pointer;
    transition: var(--transition-fast);
}

.contact-item.copyable:hover {
    border-color: var(--android-green);
    color: var(--text-primary);
    background-color: rgba(61, 220, 132, 0.05);
}

.contact-icon {
    color: var(--android-green);
}

.copy-btn-icon {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-left: 6px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-actions {
        justify-content: center;
    }
}

/* Hero Profile Image with Premium Glow */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.profile-card {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .profile-card {
        width: 260px;
        height: 260px;
    }
}

.profile-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--android-green), var(--accent-blue));
    border-radius: 50%;
    z-index: 1;
    filter: blur(12px);
    opacity: 0.4;
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.profile-border {
    position: relative;
    width: 98%;
    height: 98%;
    background-color: var(--bg-primary);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 3px solid var(--border-glass);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.floating-tech {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 22, 38, 0.8);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: hover-float 4s infinite alternate ease-in-out;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.floating-tech:hover {
    animation-play-state: paused;
    border-color: var(--accent-blue);
    background-color: rgba(15, 22, 38, 0.95);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* Tooltip styling for floating tech icons */
.floating-tech::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(15, 22, 38, 0.95);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.floating-tech::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: rgba(15, 22, 38, 0.95) transparent transparent transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.floating-tech:hover::after,
.floating-tech:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.tech-kotlin {
    top: -15px;
    left: 45px;
}

.tech-slack {
    top: 120px;
    right: -40px;
    color: #4A154B;
    font-size: 1.6rem;
    animation-delay: -0.5s;
}

.tech-firebase {
    bottom: 10px;
    right: -15px;
    animation-delay: -1.0s;
}

.tech-android {
    top: 110px;
    left: -40px;
    color: var(--android-green);
    font-size: 1.6rem;
    animation-delay: -1.5s;
}

.tech-git {
    top: -20px;
    right: 65px;
    color: #F05032;
    font-size: 1.6rem;
    animation-delay: -2.0s;
}

.tech-jira {
    top: 35px;
    right: -20px;
    color: #0052CC;
    font-size: 1.6rem;
    animation-delay: -2.5s;
}

.tech-compose {
    bottom: 45px;
    left: -25px;
    color: var(--accent-blue);
    animation-delay: -3.0s;
}

.tech-flutter {
    bottom: -25px;
    left: 110px;
    animation-delay: -3.5s;
}

.tech-icon-img {
    width: 24px;
    height: 24px;
}

.tech-icon-svg {
    width: 24px;
    height: 24px;
}

@keyframes hover-float {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-15px) rotate(8deg); }
}

/* ==========================================================================
   INTERACTIVE SHOWCASE (MOCK IDE & SIMULATOR)
   ========================================================================== */

.showcase-section {
    background-color: var(--bg-secondary);
    position: relative;
}

.showcase-carousel-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .showcase-carousel-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* App Details Panel */
.showcase-details-panel {
    padding: 40px;
    height: 642px; /* Match phone device total height (620px + 22px border) */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .showcase-details-panel {
        height: auto;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .showcase-details-panel {
        padding: 24px;
        height: auto;
        min-height: auto;
    }
}

.app-details-wrapper {
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow-y: auto;
    flex: 1;
    padding-right: 8px;
}

/* Custom Scrollbar for App Details Wrapper */
.app-details-wrapper::-webkit-scrollbar {
    width: 4px;
}
.app-details-wrapper::-webkit-scrollbar-track {
    background: transparent;
}
.app-details-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}
.app-details-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--android-green);
}

.app-details-wrapper.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.app-details-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.app-details-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-details-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-details-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.app-details-company {
    font-size: 0.9rem;
    color: var(--android-green);
    font-weight: 600;
    margin-top: 4px;
}

.app-company-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.app-company-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--android-green-glow);
}

/* Play Store Badge & Stats */
.play-store-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-playstore {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

.badge-playstore:hover {
    border-color: var(--android-green);
    background-color: rgba(61, 220, 132, 0.05);
    color: var(--text-primary);
}

.badge-playstore i {
    font-size: 1.2rem;
    color: var(--android-green);
}

.playstore-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.playstore-sub {
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.playstore-main {
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-appstore {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

.badge-appstore:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.badge-appstore i {
    font-size: 1.2rem;
    color: white;
}

.appstore-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.appstore-sub {
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.appstore-main {
    font-size: 0.8rem;
    font-weight: 700;
}

.stat-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
}

.stat-item i {
    color: var(--android-green);
}

.app-details-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.app-details-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .app-details-highlights {
        grid-template-columns: 1fr;
    }
}

.app-details-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.app-details-highlights li i {
    color: var(--android-green);
    margin-top: 3px;
}

.carousel-nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    flex-shrink: 0;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background-color: var(--android-green);
    color: #05050A;
    border-color: var(--android-green);
    box-shadow: 0 0 15px var(--android-green-glow);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-dot.active {
    background-color: var(--android-green);
    width: 24px;
    border-radius: 6px;
    box-shadow: 0 0 8px var(--android-green);
}

.phone-simulator-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-device {
    width: 310px;
    height: 620px;
    background-color: #121824;
    border: 11px solid #1F2937;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

.phone-speaker {
    width: 60px;
    height: 4px;
    background-color: #374151;
    border-radius: 2px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.phone-camera {
    width: 8px;
    height: 8px;
    background-color: #111827;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.phone-screen-frame {
    width: 100%;
    height: 100%;
    background-color: #05070B;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 3px solid #111827;
    display: flex;
    flex-direction: column;
}

.phone-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    padding: 12px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 15;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.phone-status-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* Phone Simulator Screen Layouts */
.phone-screen-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.phone-screenshots-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #05070B;
}

.phone-screenshot-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.phone-screenshot-img.active {
    opacity: 1;
    z-index: 2;
}

.phone-screenshot-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.55);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-screenshot-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.phone-screenshot-dot.active {
    background-color: var(--android-green);
    transform: scale(1.2);
    box-shadow: 0 0 6px var(--android-green);
}

.app-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fade-in-app 0.5s ease-out;
}

@keyframes fade-in-app {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

.app-header {
    padding: 10px 14px;
}

.app-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

.app-body {
    padding: 14px;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-item {
    font-size: 0.95rem;
    color: #4B5563;
    cursor: pointer;
}

.nav-item.active {
    color: var(--android-green);
}

/* Project Specific App Screens */
/* 1. Saaei Screen */
.saaei-theme {
    background-color: #070B19;
}
.saaei-theme .app-bar { color: var(--android-green); }

.saaei-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #1F2937;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.property-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.property-img-placeholder {
    height: 90px;
    border-radius: 8px;
    margin: 6px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 8px;
}

.property-price {
    background-color: rgba(8, 12, 20, 0.85);
    color: var(--android-green);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.property-info {
    padding: 0 10px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.property-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.property-location {
    font-size: 0.65rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-location i {
    color: var(--android-green);
}

.redf-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    padding: 8px 10px;
}

.redf-title {
    font-size: 0.72rem;
    font-weight: 700;
    display: block;
    color: var(--text-primary);
}

.redf-subtitle {
    font-size: 0.62rem;
    color: var(--text-secondary);
    display: block;
}

/* 2. Mahitab Screen */
.mahitab-theme {
    background-color: #0E0712;
}

.mahitab-theme .app-bar { color: #F472B6; }

.mahitab-banner {
    background: linear-gradient(135deg, #F472B6, #8B5CF6);
    border-radius: 12px;
    padding: 14px;
    color: white;
    text-align: center;
}

.banner-title {
    font-size: 0.9rem;
    font-weight: 800;
    display: block;
}

.banner-sub {
    font-size: 0.65rem;
    opacity: 0.8;
}

.fabric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.fabric-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 8px;
    text-align: center;
}

.fabric-img-placeholder {
    height: 70px;
    background-color: #2D1A3B;
    border-radius: 8px;
    margin-bottom: 6px;
    position: relative;
    overflow: hidden;
}

.fabric-title {
    font-size: 0.7rem;
    font-weight: 700;
    display: block;
}

.fabric-price {
    font-size: 0.65rem;
    color: #F472B6;
    font-weight: bold;
}



/* 4. Metrics Screen */
.metrics-theme {
    background-color: #0A0E1A;
}

.metrics-theme .app-bar {
    color: var(--accent-blue);
}

.metrics-status-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
}

.metrics-status-card .status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-blue);
}

.metrics-status-card .status-text {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-primary);
}

.metrics-attendance-widget {
    background-color: #162032;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.metrics-attendance-widget .widget-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: rgba(61, 220, 132, 0.1);
    color: var(--android-green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.metrics-attendance-widget .widget-details {
    display: flex;
    flex-direction: column;
}

.metrics-attendance-widget .widget-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metrics-attendance-widget .widget-time {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.metrics-task-list {
    background-color: #111827;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metrics-task-list .list-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 2px;
}

.metrics-task-list .task-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.metrics-task-list .task-item.checked {
    color: var(--text-muted);
    text-decoration: line-through;
}

.metrics-task-list .task-item i {
    font-size: 0.8rem;
}

.metrics-task-list .task-item.checked i {
    color: var(--android-green);
}

.metrics-theme .app-nav .nav-item.active {
    color: var(--accent-blue);
}

/* ==========================================================================
   WORK EXPERIENCE TIMELINE
   ========================================================================== */

.experience-section {
    position: relative;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 32px;
    width: 2px;
    background: var(--android-green);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 17px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0E1628;
    border: 2px solid var(--android-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--android-green);
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 0 10px rgba(61, 220, 132, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-marker.marker-proptech,
.timeline-marker.marker-freelance,
.timeline-marker.marker-agency,
.timeline-marker.marker-startup {
    border-color: var(--android-green);
    color: var(--android-green);
    box-shadow: 0 0 10px rgba(61, 220, 132, 0.2);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
}

.timeline-item:hover .timeline-marker.marker-proptech,
.timeline-item:hover .timeline-marker.marker-freelance,
.timeline-item:hover .timeline-marker.marker-agency,
.timeline-item:hover .timeline-marker.marker-startup {
    background-color: var(--android-green);
    color: #0E1628;
    box-shadow: 0 0 18px var(--android-green);
}

.timeline-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--android-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(61, 220, 132, 0.06);
}

.timeline-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 14px;
    margin-bottom: 16px;
    gap: 10px;
}

.timeline-title-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.timeline-role {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.timeline-company {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.timeline-link:hover {
    color: var(--text-primary) !important;
}

.experience-tag {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.tag-proptech,
.tag-freelance,
.tag-agency,
.tag-startup {
    background-color: rgba(61, 220, 132, 0.08);
    color: var(--android-green);
    border: 1px solid rgba(61, 220, 132, 0.2);
}

.timeline-date {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.experience-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.experience-bullets li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.bullet-icon {
    color: var(--android-green);
    margin-top: 4px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.skill-tag-badge {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.skill-tag-badge:hover {
    background-color: rgba(61, 220, 132, 0.1);
    border-color: rgba(61, 220, 132, 0.3);
    color: var(--android-green);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 15px;
    }
    .timeline-marker {
        left: 0;
    }
    .timeline-item {
        padding-left: 40px;
    }
}

/* ==========================================================================
   BENTO GRID SKILLS SECTION
   ========================================================================== */

.skills-section {
    background-color: var(--bg-secondary);
}

.skills-section.theme-android {
    --skills-accent: var(--android-green);
    --skills-accent-glow: rgba(61, 220, 132, 0.15);
    --skills-accent-badge-bg: rgba(61, 220, 132, 0.08);
    --skills-accent-badge-border: rgba(61, 220, 132, 0.2);
}

.skills-section.theme-flutter {
    --skills-accent: var(--accent-blue);
    --skills-accent-glow: rgba(0, 229, 255, 0.15);
    --skills-accent-badge-bg: rgba(0, 229, 255, 0.08);
    --skills-accent-badge-border: rgba(0, 229, 255, 0.2);
}

.skills-section .icon-highlight {
    color: var(--skills-accent) !important;
    transition: var(--transition-smooth);
}

/* Sliding Segmented Tab Control */
.skills-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.skills-tabs {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-glass);
    padding: 5px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    width: 440px;
    max-width: 100%;
}

.skills-tab-btn {
    flex: 1;
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    padding: 11px 20px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.skills-tab-btn i {
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.skills-tab-btn.active {
    color: #080C14;
}

.skills-tab-btn:hover:not(.active) {
    color: var(--text-primary);
}

.tab-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    width: calc(50% - 5px);
    border-radius: 35px;
    transition: var(--transition-smooth);
    z-index: 1;
}

/* Dynamic background based on active tab */
.skills-tabs[data-active="android"] .tab-slider {
    background-color: var(--android-green);
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.25);
    transform: translateX(0);
}

.skills-tabs[data-active="flutter"] .tab-slider {
    background-color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.25);
    transform: translateX(100%);
}

.skills-tabs[data-active="android"] .skills-tab-btn[data-tab="android"] i {
    color: #080C14;
}

.skills-tabs[data-active="flutter"] .skills-tab-btn[data-tab="flutter"] i {
    color: #080C14;
}

/* Skills Section - Header & Search */
.skills-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
}

@media (max-width: 992px) {
    .skills-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.skills-header-info {
    max-width: 600px;
}

.section-desc-left {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-top: 8px;
}

.skills-search-wrapper {
    position: relative;
    width: 350px;
    max-width: 100%;
}

@media (max-width: 992px) {
    .skills-search-wrapper {
        width: 100%;
    }
}

.skills-search-wrapper input {
    width: 100%;
    padding: 12px 18px 12px 46px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.skills-search-wrapper input:focus {
    outline: none;
    border-color: var(--skills-accent);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px var(--skills-accent-glow);
}

.skills-search-wrapper .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.skills-search-wrapper input:focus + .search-icon {
    color: var(--skills-accent);
}

/* Category Filter Pills */
.skills-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-sans);
}

.filter-pill:hover {
    border-color: var(--skills-accent);
    color: var(--skills-accent);
    transform: translateY(-1px);
}

.filter-pill.active {
    background-color: var(--skills-accent);
    border-color: var(--skills-accent);
    color: #080C14;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--skills-accent-glow);
}

/* Skills Cards Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

.skill-category-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.skill-category-card:hover {
    border-color: var(--skills-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--skills-accent-glow);
}

.skill-category-card.hidden {
    display: none !important;
}

.skill-category-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 10px;
}

.category-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.skill-category-card:hover .category-title {
    color: var(--text-primary);
}

.category-count-badge {
    background-color: var(--skills-accent-badge-bg);
    border: 1px solid var(--skills-accent-badge-border);
    color: var(--skills-accent);
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--skills-accent-badge-bg);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-pill {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.skill-pill.hidden {
    display: none !important;
}

.skill-pill:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--skills-accent-badge-border);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.skill-check {
    color: var(--skills-accent);
    font-size: 0.75rem;
}

/* No Results Message */
.skills-no-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-secondary);
    background: var(--bg-glass);
    border: 1px dashed var(--border-glass);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.no-results-icon {
    font-size: 2.2rem;
    color: var(--text-muted);
}

/* ==========================================================================
   EDUCATION & CERTIFICATIONS
   ========================================================================== */

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

.credential-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px 24px 24px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.credential-card:hover {
    border-color: var(--android-green);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(61, 220, 132, 0.08);
}

.cred-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(61, 220, 132, 0.08);
    border: 1px solid rgba(61, 220, 132, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--android-green);
    font-size: 1.4rem;
}

.card-tag {
    position: absolute;
    top: 30px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.cred-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.cred-institution {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: auto;
    padding-bottom: 20px;
}

.cred-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    margin-top: auto;
}

.cred-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cred-meta-item i {
    color: var(--android-green);
}

.continuous-learning-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 14px 20px;
    margin: 40px auto 0 auto;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    max-width: 650px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.continuous-learning-note i {
    color: var(--android-green);
    font-size: 1.1rem;
}

.spin-icon {
    animation: spin-icon-anim 8s linear infinite;
}

@keyframes spin-icon-anim {
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-header-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-header-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 18px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-method-card:hover {
    border-color: var(--android-green);
    transform: translateX(6px) translateY(-2px);
    background-color: rgba(61, 220, 132, 0.03);
    box-shadow: 0 12px 30px rgba(61, 220, 132, 0.06);
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(61, 220, 132, 0.1);
    color: var(--android-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.method-val {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--android-green);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(61, 220, 132, 0.12);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

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

.main-footer {
    border-top: 1px solid var(--border-glass);
    background-color: rgba(3, 5, 9, 0.4);
}

.footer-content {
    padding: 24px 24px; /* Override section-container 100px padding */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #0E1624;
    border: 1px solid var(--android-green);
    border-radius: 10px;
    padding: 14px 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--android-green);
}

/* Scroll Animation Hooks */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive scaling for the phone device mockup */
@media (max-width: 480px) {
    .phone-device {
        transform: scale(0.85);
        margin: -35px 0;
    }
}

@media (max-width: 360px) {
    .phone-device {
        transform: scale(0.75);
        margin: -60px 0;
    }
}
