:root {
    --bg-color: #030403;
    --text-color: #00FF41;
    /* Tech Neon Green */
    --accent-color: #008F11;
    /* Darker Matrix Green */
    --hover-green: #00e038;
    --dark-panel: rgba(7, 9, 7, 0.4);
    --glass-border: rgba(0, 255, 65, 0.15);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --nav-height: 52px;
    /* Thinner macOS style menu bar */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 11px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 0px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--text-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hover-green);
}

/* Particles */
#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    position: relative;
    padding: 0 15px;
}

.section-title span {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.subtitle-emas {
    font-size: 1.2rem;
    display: block;
    margin-top: 10px;
    letter-spacing: 2px;
    color: #ffd700 !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5) !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--text-color);
    box-shadow: 0 0 12px var(--text-color);
    border-radius: 2px;
}

/* Base View Wrappers */
.app-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* macOS Desktop Navbar */
.desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3%;
    position: fixed;
    width: 100%;
    height: var(--nav-height);
    top: 0;
    z-index: 1000;
    background: rgba(10, 15, 10, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.desktop-nav .logo {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.desktop-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.desktop-nav .nav-links a {
    color: #eee;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 6px;
}

.desktop-nav .nav-links a:hover,
.desktop-nav .nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-right .clock {
    color: #eee;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Mobile Nav Bar - Hidden on Desktop */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(3, 4, 3, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--accent-color);
    z-index: 2000;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 255, 65, 0.1);
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 20%;
    height: 100%;
}

.mobile-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 3px;
    transition: 0.3s;
}

.mobile-nav .nav-item.active,
.mobile-nav .nav-item:hover {
    color: var(--text-color);
    text-shadow: 0 0 10px var(--text-color);
}

.mobile-nav .nav-item.active i {
    transform: translateY(-4px) scale(1.15);
}

/* ---------------------------------
   macOS Window Design System
----------------------------------- */
.mac-window {
    background: rgba(5, 8, 5, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 14px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    padding-top: 42px;
    /* Title bar height space */
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

/* Hover lift effect for whole windows */
.hover-float:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 65, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mac-titlebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 42px;
    background: linear-gradient(to bottom, rgba(30, 35, 30, 0.8), rgba(15, 20, 15, 0.8));
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    z-index: 10;
}

.mac-titlebar.mini {
    height: 30px;
}

.mac-window.service-card {
    padding-top: 30px;
    /* smaller title bar for grid items */
}

.mac-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.4);
    transition: 0.2s;
}

.mac-titlebar:hover .mac-btn {
    opacity: 1;
}

.mac-close {
    background-color: #ff5f56;
    border: 1px solid #e0443e;
}

.mac-titlebar:hover .mac-close::before {
    content: '×';
    position: absolute;
    top: -3px;
    left: 3px;
    color: #4d0000;
    font-size: 10px;
    font-weight: bold;
}

.mac-minimize {
    background-color: #ffbd2e;
    border: 1px solid #dea123;
}

.mac-titlebar:hover .mac-minimize::before {
    content: '-';
    position: absolute;
    top: -4px;
    left: 3.5px;
    color: #5a3000;
    font-size: 14px;
    font-weight: bold;
}

.mac-maximize {
    background-color: #27c93f;
    border: 1px solid #1aab29;
}

.mac-titlebar:hover .mac-maximize::before {
    content: '+';
    position: absolute;
    top: -3.5px;
    left: 3px;
    color: #004d09;
    font-size: 12px;
    font-weight: bold;
}

.mac-title {
    flex: 1;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #aaa;
    margin-right: 56px;
    /* Offset the 3 buttons */
}

.window-content {
    padding: 3rem 4%;
}

/* Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.has-fade-in {
    opacity: 0;
    animation: fadeInTop 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay Utility Classes */
.style-delay-1 {
    transition-delay: 0.1s;
}

.style-delay-2 {
    transition-delay: 0.2s;
}

.style-delay-3 {
    transition-delay: 0.3s;
}

.style-delay-4 {
    transition-delay: 0.4s;
}

.style-delay-5 {
    transition-delay: 0.5s;
}

.style-delay-6 {
    transition-delay: 0.6s;
}

.style-delay-7 {
    transition-delay: 0.7s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 2rem) 5% 2rem;
}

.hero-window {
    width: 100%;
    max-width: 1100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly darker for hero */
}

.hero-content {
    text-align: center;
    padding: 4rem 2rem;
    z-index: 2;
    width: 100%;
}

.nowrap-name {
    white-space: nowrap;
    display: inline-block;
}

.hero-content h1 {
    font-size: clamp(24px, 4.5vw, 5rem);
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.hero-content .tagline {
    font-size: clamp(16px, 2.5vw, 1.8rem);
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
    margin-bottom: 2rem;
    font-weight: 600;
}

.typewriter-container {
    height: 2.5rem;
    margin-bottom: 3.5rem;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 8px;
    border-left: 3px solid var(--text-color);
}

.prompt-symbol {
    color: var(--text-color);
    font-weight: bold;
    margin-right: 8px;
    font-family: monospace;
}

.typewriter {
    font-size: clamp(14px, 2vw, 1.4rem);
    color: #dcdcdc;
    font-family: Consolas, monospace;
}

.btn-container {
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: rgba(0, 255, 65, 0.05);
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.15), inset 0 0 10px rgba(0, 255, 65, 0.05);
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.btn i {
    transition: 0.3s;
}

.btn:hover {
    background: var(--text-color);
    color: #000;
    box-shadow: 0 0 30px var(--text-color), inset 0 0 20px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.btn:hover i {
    transform: translateX(8px);
}

/* Containers & Grid adjustments */
.container {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* Location Fix: make cards 100% height inside mac window */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-grid .mac-window {
    padding-top: 0;
    border-radius: 12px;
}

.location-card {
    background: rgba(0, 10, 0, 0.5);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    height: 100%;
}

.location-card:hover {
    background: rgba(0, 30, 5, 0.8);
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1);
}

.location-card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--text-color);
    margin-bottom: 10px;
    transition: 0.5s;
}

.location-card:hover .icon-wrap {
    transform: rotateY(180deg);
    background: rgba(0, 255, 65, 0.3);
}

.location-card i {
    font-size: 1.8rem;
    color: var(--text-color);
}

.location-card h4 {
    font-size: 1.1rem;
    color: #ccc;
    font-family: var(--font-body);
}

.location-card p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

/* Bottom Grid Layout (Location, Contact, Discussion) */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .bottom-grid {
        grid-template-columns: 1fr 1.5fr 1.5fr;
        align-items: stretch;
    }
}

.grid-col {
    display: flex;
    flex-direction: column;
}

.h-100 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.location-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.location-stack .mac-window {
    flex: 1;
    padding-top: 0;
    border-radius: 12px;
}

.location-stack .location-card {
    padding: 1.5rem;
    gap: 10px;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
}

.location-stack .icon-wrap {
    width: 45px;
    height: 45px;
    margin-bottom: 0;
    margin-right: 15px;
    flex-shrink: 0;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 3rem;
}

.about-text {
    flex: 1 1 500px;
    font-size: 1.25rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.about-text p {
    text-indent: 20px;
    text-align: justify;
}

.about-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-box {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 20, 5, 0.8), rgba(0, 5, 0, 0.9));
    box-shadow: inset 0 0 40px rgba(0, 255, 65, 0.2), 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.tech-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--text-color));
    animation: rotate-border 4s linear infinite;
}

.tech-box::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #020502;
    border-radius: 17px;
    z-index: 1;
}

.tech-box>* {
    z-index: 2;
}

.tech-box i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 20px var(--text-color);
}

.tech-box p {
    font-family: var(--font-heading);
    font-weight: bold;
    letter-spacing: 2px;
}

/* Vision Mission Grid - inside Mac window */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.card {
    background: rgba(0, 10, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.card h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #fff;
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 10px;
    display: inline-block;
}

.card ul {
    margin-left: 20px;
    color: #dadada;
    font-size: 1.1rem;
    line-height: 1.8;
}

.card ul li {
    margin-bottom: 1rem;
}

.card p {
    color: #dadada;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    background: rgba(0, 15, 0, 0.3);
    transition: 0.4s;
    border-radius: 12px;
}

.hover-glow:hover {
    border-color: var(--text-color);
    box-shadow: 0 15px 35px rgba(0, 255, 65, 0.15), inset 0 0 20px rgba(0, 255, 65, 0.05);
    transform: translateY(-5px);
}

.service-card .card-body {
    padding: 2.5rem 2rem 2.5rem;
}

.service-card i {
    display: inline-block;
    padding-top: 15px;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 15px var(--text-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: #ccc;
    font-size: 1rem;
}

/* Continuous Micro Animations */
.pulse-anim {
    animation: pulse 2s infinite;
}

.float-anim {
    animation: float 3s ease-in-out infinite;
}

.bounce-anim {
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        text-shadow: 0 0 25px var(--text-color);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* Contact Form */
.contact-form-container {
    max-width: 850px;
    margin: 0 auto;
}

.input-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.input-row .input-group {
    margin-bottom: 0;
}

label {
    margin-bottom: 0.8rem;
    color: #ccc;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

label i {
    color: var(--text-color);
    font-size: 1.1rem;
}

input,
textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 143, 17, 0.4);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: 0.3s;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--text-color);
    background: rgba(0, 20, 5, 0.7);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.btn-glow {
    width: 100%;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.2rem;
    margin-top: 1rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

/* Comments Section */
.comments-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.glass-panel {
    background: rgba(0, 20, 0, 0.4);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--text-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glass-panel h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-guide {
    color: #fff;
    margin: 15px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.highlight-guide span {
    color: var(--text-color);
    font-family: Consolas, monospace;
    font-size: 1.1rem;
}

.utterances-container {
    min-height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
footer {
    padding: 4rem 5% calc(3rem + var(--nav-height, 0px));
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.footer-tagline {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-ext-web a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-ext-web a:hover {
    color: var(--text-color);
    text-shadow: 0 0 10px var(--text-color);
}

.social-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.5rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-links a:hover {
    background: var(--text-color);
    color: #000;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 25px rgba(0, 255, 65, 0.4);
    border-color: #fff;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
    margin-top: 2rem;
}

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

/* Responsiveness tweaks for Mobile styling over macOS */
@media (max-width: 1024px) {
    .container {
        padding: 4rem 4%;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 65px;
    }

    /* Bottom nav space */
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

    .mac-window {
        border-radius: 8px;
    }

    .mac-titlebar {
        border-radius: 8px 8px 0 0;
    }

    .window-content {
        padding: 2rem 5%;
    }

    .hero {
        padding-top: 2rem;
    }

    .input-row {
        flex-direction: column;
        gap: 0;
    }

    .input-group {
        margin-bottom: 1.2rem;
    }

    /* Make typography fit */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: clamp(22px, 6vw, 2.5rem);
    }
}