/* Variables */
:root {
    --navy: #0a192f;
    --light-navy: #112240;
    --lightest-navy: #233554;
    --slate: #8892b0;
    --light-slate: #a8b2d1;
    --lightest-slate: #ccd6f6;
    --white: #e6f1ff;
    --green: #64ffda;
    /* Neon Blue/Cyan Accent */
    --blue: #00d4ff;

    --fz-xxs: 12px;
    --fz-xs: 13px;
    --fz-sm: 14px;
    --fz-md: 16px;
    --fz-lg: 18px;
    --fz-xl: 20px;
    --fz-xxl: 22px;
    --fz-heading: 32px;

    --font-mono: 'Fira Code', monospace;
    --font-sans: 'Inter', sans-serif;

    --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);

    --nav-height: 100px;
    --nav-scroll-height: 70px;
}

/* Global Reset */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    width: 100%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    background-color: var(--navy);
    color: var(--slate);
    font-family: var(--font-sans);
    line-height: 1.3;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: var(--lightest-slate);
    line-height: 1.1;
}

p {
    margin: 0 0 15px 0;
}

a {
    display: inline-block;
    text-decoration: none;
    text-decoration-skip-ink: auto;
    color: inherit;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

a:hover,
a:focus {
    color: var(--green);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Utilities */
.section {
    margin: 0 auto;
    padding: 100px 0;
    max-width: 1000px;
}

.big-heading {
    margin: 0;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 600;
}

.big-heading.slate {
    color: var(--slate);
    font-size: clamp(20px, 5vw, 40px);
    /* Reduced significantly from default big-heading */
    line-height: 1.3;
}

.cta-btn {
    color: var(--green);
    background-color: transparent;
    border: 1px solid var(--green);
    border-radius: 4px;
    padding: 1.25rem 1.75rem;
    font-size: var(--fz-sm);
    font-family: var(--font-mono);
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

.cta-btn.small-btn {
    padding: 0.75rem 1rem;
    font-size: var(--fz-xs);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    z-index: 11;
    padding: 0px 50px;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    color: var(--green);
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-mono);
    border: 2px solid var(--green);
    padding: 5px 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    padding: 10px;
    font-family: var(--font-mono);
    font-size: var(--fz-xs);
    color: var(--lightest-slate);
}

.nav-number {
    color: var(--green);
    margin-right: 5px;
}

.btn-resume {
    color: var(--green);
    background-color: transparent;
    border: 1px solid var(--green);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: var(--fz-xs);
    font-family: var(--font-mono);
    margin-left: 15px;
    transition: var(--transition);
}

.btn-resume:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--green);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* Changed to center for better container alignment */
    min-height: 100vh;
    padding: 0;
    max-width: 1200px;
    /* Increased max-width */
    margin: 0 auto;
}

#particles-js {
    position: fixed;
    /* Fixed to cover entire scrollable area visually */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind everything */
    background: var(--navy);
    /* Ensure background color is here too if needed, or let body handle it */
}

.hero-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
    z-index: 2;
    width: 100%;
    padding: 0 40px;
    /* Add some padding on sides */
}



.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    max-width: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--green);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-img-wrapper img {
    width: 100%;
    display: block;
    background: linear-gradient(var(--light-navy), var(--navy));
    /* fallback background */
}



/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--green);
    font-size: 20px;
    animation: bounce 2s infinite;
    display: none;
    /* Desktop hidden depending on view, showing in mobile via media query */
    z-index: 5;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .scroll-down {
        display: block;
    }
}

/* --- Brands Grid --- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 1.5rem;
    align-items: center;
}

.brand-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.brand-item:hover {
    background: rgba(100, 255, 218, 0.05);
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateY(-3px);
}

/* Brand Item Specifics */
.brand-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    /* Stack logo and name */
    justify-content: center;
    align-items: center;
    height: 110px;
    /* Increased height for name */
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.1);
    gap: 10px;
}

.brand-logo {
    max-width: 100%;
    max-height: 50px;
    /* Restrict logo height */
    object-fit: contain;
    transition: filter 0.3s ease;
}

.brand-name {
    font-size: 0.9rem;
    color: var(--light-slate);
    font-family: var(--font-mono);
    opacity: 0;
    /* Hidden by default */
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-name {
    opacity: 1;
    transform: translateY(0);
}

/* Secondary Brands Grid */
.other-brands-container {
    margin-top: 30px;
    border-top: 1px solid rgba(136, 146, 176, 0.1);
    padding-top: 20px;
}

.other-brands-title {
    font-size: 1rem;
    color: var(--lightest-slate);
    margin-bottom: 15px;
    font-family: var(--font-mono);
}

/* --- Internal Stats (Inside Platforms) --- */
.internal-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(136, 146, 176, 0.1);
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(17, 34, 64, 0.6);
    padding: 25px 40px;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    transition: transform 0.3s ease, border-color 0.3s ease;
    min-width: 250px;
}

.stat-mini:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
}

.stat-mini i {
    font-size: 32px;
    color: var(--green);
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-value-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.stat-mini .counter {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lightest-slate);
    line-height: 1;
    display: inline-block;
}

.stat-mini .plus {
    color: var(--green);
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    margin-left: 5px;
    animation: pulse-glow 2s infinite;
}

.stat-mini p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--slate);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 500;
}

@keyframes pulse-glow {
    0% {
        text-shadow: 0 0 5px rgba(100, 255, 218, 0.2);
        opacity: 0.8;
    }

    50% {
        text-shadow: 0 0 20px rgba(100, 255, 218, 0.6);
        opacity: 1;
    }

    100% {
        text-shadow: 0 0 5px rgba(100, 255, 218, 0.2);
        opacity: 0.8;
    }
}

@media (max-width: 600px) {
    .internal-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-mini {
        width: 100%;
        min-width: unset;
    }
}


/* Filters for Dark Theme Adaptation */

/* For White Backgrounds (Aryana, ISR) */
/* Invert (White->Black), Grayscale, then Screen (Drops Black), Brightness (Boosts Content) */
.filter-white {
    filter: invert(1) grayscale(1) brightness(1000%);
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* For Black Backgrounds (Zekri) */
/* Screen drops black immediately. Grayscale + Brightness for uniformity */
.filter-black-bg {
    filter: grayscale(1) brightness(200%);
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* For Complex/Colored Backgrounds (Chargana Brown Bg) */
/* Try to make it monochrome white-ish */
.filter-complex {
    filter: grayscale(1) contrast(150%) brightness(200%);
    mix-blend-mode: screen;
    /* Might not be perfect for brown, but softens it */
    opacity: 0.9;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



.hi-text {
    color: var(--green);
    font-family: var(--font-mono);
    font-size: var(--fz-md);
    margin-bottom: 30px;
}

.hero-desc {
    margin-top: 20px;
    width: 50%;
    max-width: 540px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.section-title {
    display: flex;
    align-items: center;
    position: relative;
    margin: 10px 0 40px;
    width: 100%;
    font-size: clamp(26px, 5vw, 32px);
    white-space: nowrap;
}

.section-title:after {
    content: "";
    display: block;
    position: relative;
    top: -5px;
    width: 300px;
    height: 1px;
    margin-left: 20px;
    background-color: var(--lightest-navy);
}

.section-number {
    color: var(--green);
    font-family: var(--font-mono);
    font-size: var(--fz-xl);
    font-weight: 400;
    margin-right: 10px;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 200px));
    margin-top: 20px;
    overflow: hidden;
    list-style: none;
}

.skills-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    font-family: var(--font-mono);
    font-size: var(--fz-xs);
}

.skills-list li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--green);
}

.img-wrapper {
    position: relative;
    transition: var(--transition);
}

.img-wrapper img {
    border-radius: 4px;
    filter: grayscale(100%) contrast(1);
    transition: var(--transition);
    max-width: 100%;
}

.img-wrapper:hover img {
    filter: none;
}

/* Experience Section (Stacked Layout) */
.experience-stack {
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Space between the two major blocks */
    max-width: 900px;
    margin: 0 auto;
}

.experience-block {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--lightest-navy);
}

.exp-title {
    color: var(--green);
    font-size: var(--fz-xl);
    margin-bottom: 20px;
    font-family: var(--font-mono);
    position: relative;
}

.exp-title::before {
    content: "";
    position: absolute;
    left: -22px;
    /* Access the border line */
    top: 5px;
    width: 2px;
    height: 20px;
    background: var(--green);
    /* Highlight marker */
}

.exp-content h3 {
    margin-bottom: 5px;
    font-size: var(--fz-xxl);
    font-weight: 500;
    line-height: 1.3;
}

.exp-content .range {
    margin-bottom: 25px;
    color: var(--light-slate);
    font-family: var(--font-mono);
    font-size: var(--fz-xs);
}

.exp-content ul {
    list-style: none;
    padding: 0;
}

.exp-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: var(--fz-lg);
    color: var(--slate);
}

.exp-content ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--green);
}



.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
    display: block;
    animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel h3 {
    font-size: var(--fz-xxl);
    color: var(--lightest-slate);
    margin-bottom: 5px;
}

.tab-panel .range {
    font-family: var(--font-mono);
    font-size: var(--fz-xs);
    color: var(--slate);
    margin-bottom: 25px;
}

.tab-panel ul {
    list-style: none;
    padding: 0;
}

.tab-panel ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: var(--fz-lg);
    color: var(--slate);
}

.tab-panel ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--green);
}




/* Platforms Section */
.skills-category {
    margin-bottom: 60px;
}

.category-title {
    color: var(--lightest-slate);
    font-size: var(--fz-xl);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title i {
    color: var(--green);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.platform-card {
    background-color: rgba(17, 34, 64, 0.7);
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.platform-card:hover {
    transform: translateY(-7px);
    background-color: var(--light-navy);
    border-color: var(--green);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.platform-card i {
    font-size: 36px;
    color: var(--green);
    margin-bottom: 15px;
    transition: var(--transition);
}

.platform-card:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.platform-card h4 {
    font-size: var(--fz-xs);
    color: var(--lightest-slate);
    font-family: var(--font-mono);
    font-weight: normal;
    margin: 0 0 10px 0;
}

/* Star Ratings */
.stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 12px;
    font-family: Times;
    /* Standard font for stars character */
    line-height: 1;
}

.stars::before {
    content: '★★★★★';
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--green) var(--percent), var(--slate) var(--percent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Portfolio Section */
.featured-projects {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-item {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    margin-bottom: 100px;
}

.project-content {
    position: relative;
    grid-column: 1 / 7;
    grid-row: 1 / -1;
    text-align: left;
    z-index: 2;
}

.project-title {
    color: var(--lightest-slate);
    font-size: clamp(24px, 5vw, 28px);
}

.project-overline {
    margin: 10px 0;
    color: var(--green);
    font-family: var(--font-mono);
    font-size: var(--fz-xs);
    font-weight: 400;
}

.project-description {
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    padding: 25px;
    border-radius: 4px;
    background-color: var(--light-navy);
    color: var(--light-slate);
    font-size: var(--fz-lg);
}

.project-tech-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin: 25px 0 10px;
    padding: 0;
    list-style: none;
}

.project-tech-list li {
    margin: 0 20px 5px 0;
    color: var(--light-slate);
    font-family: var(--font-mono);
    font-size: var(--fz-xs);
    white-space: nowrap;
}

.project-image {
    grid-column: 6 / -1;
    grid-row: 1 / -1;
    position: relative;
    z-index: 1;
    height: 100%;
    opacity: 0.25;
}

.project-image a {
    width: 100%;
    height: 100%;
    background-color: var(--green);
    border-radius: 4px;
    vertical-align: middle;
}

.project-image a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0px;
    z-index: 3;
    transition: var(--transition);
    background-color: var(--navy);
    mix-blend-mode: screen;
}

.project-image img {
    border-radius: 4px;
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1) brightness(90%);
}

.project-links {
    margin-top: 10px;
}

.project-links a {
    padding: 10px;
    margin-right: -10px;
}

.center-heading {
    text-align: center;
    margin: 60px 0 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    position: relative;
    margin-top: 50px;
}

.show-more-container {
    text-align: center;
    margin-top: 80px;
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    background: var(--light-navy);
    padding: 30px;
    text-align: center;
    border-radius: 4px;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--green);
    margin: 10px 0;
    font-family: var(--font-mono);
}

.stat-card .icon-box {
    font-size: 2rem;
    color: var(--lightest-slate);
}

.center-title {
    justify-content: center;
}

.center-title:after {
    margin-left: 20px;
    width: 200px;
}

/* Contact Section */
.contact-section {
    max-width: 600px;
    margin: 0 auto 100px;
    text-align: center;
}

.section-number-big {
    color: var(--green);
    font-family: var(--font-mono);
    font-size: var(--fz-md);
    font-weight: 400;
    margin-bottom: 20px;
}

.big-title {
    font-size: clamp(40px, 5vw, 60px);
    margin: 0 0 10px;
}

.contact-desc {
    color: var(--slate);
    font-size: var(--fz-lg);
}

.contact-form {
    margin-top: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: var(--light-navy);
    border: 1px solid var(--lightest-navy);
    color: var(--white);
    padding: 15px;
    font-family: var(--font-mono);
    border-radius: 4px;
    font-size: var(--fz-sm);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
}

/* Side Elements */
.side-element {
    width: 40px;
    position: fixed;
    bottom: 0px;
    left: auto;
    right: 40px;
    z-index: 10;
    color: var(--light-slate);
}

.side-element.left {
    left: 40px;
    right: auto;
}

.social-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.social-list li a {
    padding: 10px;
    font-size: 20px;
}

.social-list li:last-of-type {
    margin-bottom: 20px;
}

.email-link {
    writing-mode: vertical-rl;
    margin: 20px auto;
    padding: 10px;
    font-family: var(--font-mono);
    font-size: var(--fz-xs);
    letter-spacing: 0.1em;
}

.line {
    width: 1px;
    height: 90px;
    background-color: var(--light-slate);
    margin: 0px auto;
}

/* Footer */
footer {
    padding: 15px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: var(--fz-xxs);
    color: var(--light-slate);
    margin-bottom: 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background-color: var(--slate);
    border: 3px solid var(--navy);
    border-radius: 10px;
}

/* Media Queries */
@media (max-width: 1080px) {
    .side-element {
        display: none;
    }

    .section {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 25px;
    }

    .menu-toggle {
        display: block;
        z-index: 100;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85vw;
        max-width: 400px;
        flex-direction: column;
        justify-content: center;
        background-color: rgba(17, 34, 64, 0.95);
        backdrop-filter: blur(20px);
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0px 30px -15px rgba(2, 12, 27, 0.7);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        gap: 30px;
    }

    .hero-content {
        align-items: center;
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 20px;
    }

    .hero-img-wrapper {
        max-width: 200px;
        border-width: 4px;
        margin: 0 auto;
    }

    .hero-desc {
        width: 100%;
        max-width: 100%;
        font-size: var(--fz-md);
        margin: 20px 0;
    }

    /* Mobile Skills - 2 Columns */
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .platform-card {
        padding: 15px;
    }

    .platform-card i {
        font-size: 28px;
    }

    .big-heading {
        font-size: clamp(32px, 5vw, 50px);
    }

    .hero {
        align-items: center;
    }

    .about-grid {
        display: block;
    }

    .about-img {
        margin: 50px auto 0;
        width: 70%;
    }

    .project-item {
        display: block;
        margin-bottom: 60px;
        background-color: var(--light-navy);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    }

    .project-content {
        padding: 25px;
        background: transparent;
        box-shadow: none;
        text-align: left;
    }

    .project-title {
        color: var(--lightest-slate);
    }

    .project-description {
        background-color: transparent;
        box-shadow: none;
        padding: 20px 0;
        color: var(--light-slate);
    }

    .project-image {
        display: block;
        height: 200px;
        opacity: 1;
        grid-column: 1 / -1;
        width: 100%;
    }

    .project-image img {
        height: 100%;
        object-fit: cover;
        filter: grayscale(0%);
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .experience-tabs {
        display: block;
    }

    .tabs-list {
        display: flex;
        overflow-x: auto;
        width: 100%;
        margin-bottom: 30px;
        border-bottom: 1px solid var(--lightest-navy);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs-list::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        border-left: 0;
        border-bottom: 2px solid transparent;
        min-width: fit-content;
        padding: 0 20px;
        justify-content: center;
        flex-shrink: 0;
    }

    .tab-btn.active {
        border-left: 0;
        border-bottom: 2px solid var(--green);
    }

    .tabs-content {
        margin-left: 0;
    }
}