/* --- RESET DHE VARIABLAT --- */
:root {
    --bg-color: #0a0a0a; /* E zeza e thellë */
    --surface-color: rgba(20, 20, 20, 0.7); /* Xhami i tejdukshëm */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #00e5ff; /* Cyan profesional */
    --nav-height: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* --- HEADER & EFEKTI GLASSMORPHISM --- */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: transparent;
    transition: all 0.4s ease-in-out;
}

/* Kjo klasë shtohet nga JS kur bën scroll */
.header.scroll-header {
    background: var(--surface-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* 3D Depth */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

/* --- LOGO --- */
.nav-logo {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.8rem;
    text-decoration: none;
    letter-spacing: -1px;
}
.nav-logo span {
    color: var(--accent-color);
}

/* --- LINQET E MENUSË --- */
.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Butoni i Kontaktit (Call to Action) */
.nav-link-btn {
    background: var(--accent-color);
    color: #000;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-link-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px); /* 3D pop up */
}

/* --- VEPRIMET NË TË DJATHTË (LANGUAGE SWITCHER + TOGGLE) --- */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.lang-select {
    background: rgba(20, 20, 20, 0.6);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lang-select:hover, .lang-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.lang-select option {
    background-color: #0a0a0a;
    color: var(--text-primary);
}

/* --- CUSTOM BURGER MENU (PËR CELULAR) --- */
.nav-toggle {
    display: none; /* Fshihet në Desktop */
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Animacion i lëmuar */
}

.line1 { top: 0; }
.line2 { top: 9px; }
.line3 { top: 18px; }

/* Animacioni kur Burger Menu është i hapur (Kthehet në X) */
.nav-toggle.active .line1 {
    transform: rotate(45deg);
    top: 9px;
    background-color: var(--accent-color);
}
.nav-toggle.active .line2 {
    opacity: 0;
    transform: translateX(-15px);
}
.nav-toggle.active .line3 {
    transform: rotate(-45deg);
    top: 9px;
    background-color: var(--accent-color);
}

/* =========================================
   HERO SECTION (SEKSIONI I PARË)
========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    overflow: hidden;
    padding-top: var(--nav-height); /* Krijon hapësirë poshtë menusë */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -1.5px;
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* =========================================
   EFEKTI GLOW (SFONDI "3D")
========================================= */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: 1;
    filter: blur(60px);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* =========================================
   ANIMACIONI I TEKSTIT (TYPEWRITER)
========================================= */
.typed-text {
    background: linear-gradient(90deg, #ffffff, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cursor {
    display: inline-block;
    width: 4px;
    background-color: var(--accent-color);
    margin-left: 4px;
    animation: blink 1s infinite;
}

.cursor.typing {
    animation: none;
}

@keyframes blink {
    0%  { background-color: var(--accent-color); }
    49% { background-color: var(--accent-color); }
    50% { background-color: transparent; }
    99% { background-color: transparent; }
    100%  { background-color: var(--accent-color); }
}

/* =========================================
   STRUKTURA BAZË PËR TË GJITHA SEKSIONET
========================================= */
.section {
    padding: 7rem 2rem;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 3.5rem;
    text-align: left;
    letter-spacing: -1px;
}

/* =========================================
   SEKSIONI: RRETH MEJE
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-primary);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.stat-box span {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-skills {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.skills-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    background: rgba(0, 229, 255, 0.05);
    color: var(--accent-color);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.skill-tag:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
}

/* =========================================
   FOTOJA E PROFILIT (NEON PULSE AVATAR)
========================================= */
.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; 
    align-items: center;
}

.profile-avatar-container {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    z-index: 2;
    flex-shrink: 0;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    position: relative;
    z-index: 3;
    background-color: #1a1a1a;
}

.profile-glow-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-color);
    filter: blur(20px);
    opacity: 0.5;
    z-index: 1;
    animation: pulseAvatar 3s infinite alternate;
}

@keyframes pulseAvatar {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.15); opacity: 0.7; }
}

/* =========================================
   SEKSIONI: PRODUKTET
========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.15);
}

.product-img-box {
    height: 200px;
    width: 100%;
    position: relative;
}

.product-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    backdrop-filter: blur(5px);
}

.product-status.b2b {
    color: #ffb86c;
    border-color: rgba(255, 184, 108, 0.2);
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.product-tech-list span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.product-tech-list span::before {
    content: "•";
    color: var(--accent-color);
    margin-right: 5px;
}

.product-links {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.demo-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.demo-link .arrow {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.demo-link:hover {
    color: var(--accent-color);
}
.demo-link:hover .arrow {
    transform: translate(5px, -5px);
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* =========================================
   SEKSIONI: CERTIFIKATAT
========================================= */
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -2.5rem;
    margin-bottom: 3.5rem;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.cert-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.05);
}

.cert-header {
    margin-bottom: 1.2rem;
}

.cert-issuer {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.cert-issuer.google {
    color: #4285F4;
    border: 1px solid rgba(66, 133, 244, 0.2);
}

.cert-issuer.meta {
    color: #0668E1;
    border: 1px solid rgba(6, 104, 225, 0.2);
}

.cert-issuer.hubspot {
    color: #FF7A59;
    border: 1px solid rgba(255, 122, 89, 0.2);
}

.cert-issuer.tech {
    color: var(--accent-color);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.cert-title {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.cert-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.cert-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pulse-dot.green {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff00;
    animation: blinkDot 2s infinite;
}

@keyframes blinkDot {
    0% { opacity: 0.4; box-shadow: 0 0 0px #00ff00; }
    50% { opacity: 1; box-shadow: 0 0 8px #00ff00; }
    100% { opacity: 0.4; box-shadow: 0 0 0px #00ff00; }
}

/* =========================================
   SEKSIONI: 1% DITARI
========================================= */
.diary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.diary-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.diary-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: var(--accent-color);
    filter: blur(70px);
    opacity: 0.15;
    z-index: 1;
    border-radius: 50%;
}

.diary-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.diary-image-wrapper:hover .diary-img {
    transform: rotateY(-8deg) rotateX(5deg) scale(1.03);
}

.diary-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-color);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.diary-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.diary-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.diary-features {
    list-style: none;
    margin: 2.5rem 0;
}

.diary-features li {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.diary-features li span {
    color: #000;
    background: var(--accent-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 900;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.diary-cta {
    margin-top: 2.5rem;
}

/* =========================================
   SEKSIONI: KONTAKTI
========================================= */
.contact {
    padding-bottom: 5rem;
}

.contact-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--text-primary);
    transition: color 0.4s ease;
}

.contact-details h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-card.whatsapp-card:hover {
    border-color: #25D366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
    transform: translateY(-5px);
}
.contact-card.whatsapp-card:hover .contact-icon {
    color: #25D366;
}

.contact-card.email-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
    transform: translateY(-5px);
}
.contact-card.email-card:hover .contact-icon {
    color: var(--accent-color);
}

/* =========================================
   RRJETET SOCIALE
========================================= */
.social-networks {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-btn.linkedin:hover { background: #0077b5; color: #fff; border-color: #0077b5; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3); }
.social-btn.github:hover { background: #fff; color: #000; border-color: #fff; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2); }
.social-btn.twitter:hover { background: #000; color: #fff; border-color: #333; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1); }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; border-color: transparent; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3); }
.social-btn.facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3); }

/* =========================================
   FOOTER
========================================= */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    text-align: center;
    background: #050505;
}

.footer-logo {
    display: inline-block;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.footer-logo span {
    color: var(--accent-color);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-copyright strong {
    color: var(--text-primary);
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
========================================= */
@media screen and (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .diary-grid {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 3.5rem;
    }
    
    .diary-image-wrapper {
        order: -1;
    }
    
    .diary-img {
        max-width: 320px;
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 7rem 3rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.show-menu {
        right: 0; 
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    .btn {
        width: 100%;
    }
    .hero-glow {
        width: 80vw;
        height: 80vw;
    }

    .contact-cards-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 900px) {
    .about-text-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 3.5rem;
    }
    
    .profile-avatar-container {
        width: 220px;
        height: 220px;
    }
}