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

html,
body {
    font-family: monospace;
    background: #0a0a0a;
    color: #00ff99;
    scroll-behavior: smooth;
}

/* === NAVBAR === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(0, 255, 153, 0.1);
    border-bottom: 1px solid rgba(0, 255, 128, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo::after {
    content: "0";
    animation: logoFlip 1s steps(1) infinite;
}

.logo {
    font-size: 2rem;
    color: #00ff99;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

@keyframes logoFlip {
    0% {
        content: "0";
    }

    50% {
        content: "1";
    }

    100% {
        content: "0";
    }
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #00ff99;
    text-decoration: none;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #00ff99;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 30px;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #00ff99;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 12px;
}

.menu-toggle span:nth-child(3) {
    top: 24px;
}

.menu-toggle.active span:nth-child(1) {
    top: 12px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 12px;
    transform: rotate(-135deg);
}

/* === SECTIONS === */
section {
    min-height: 100vh;
    padding: 120px 40px 60px;
    position: relative;
    z-index: 2;
}

#home {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

#about .card {
    margin: 60px auto;
    width: 350px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 128, 0.3);
    text-align: center;
}

.card button {
    padding: 10px 18px;
    background: #00ff99;
    color: #0a0a0a;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 12px;
}

.card button:focus {
    outline: none;
}

.card button:active {
    transform: scale(0.95);
}

.card button:hover {
    background: #00cc77;
}

.grid-container {
    padding: 40px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.card img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.card img:hover {
    transform: scale(1.05);
}

.card-image-container {
    overflow: hidden;
    border-radius: 12px;
    height: 400px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #aaffee;
    margin-bottom: 16px;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}


/* === CONTACT === */
/* Enhanced Contact Section Styling */
#contact {
    min-height: 100vh;
    padding: 120px 40px 60px;
    position: relative;
    z-index: 2;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 128, 0.05) 0%, transparent 70%);
}

.contact-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.contact-info {
    flex: 1;
    padding: 40px;
    background: rgba(0, 20, 10, 0.7);
    border: 1px solid rgba(0, 255, 128, 0.3);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.contact-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 128, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.binary-pattern {
    font-family: monospace;
    color: rgba(0, 255, 128, 0.15);
    font-size: 1.2rem;
    margin-bottom: 30px;
    user-select: none;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2.2rem;
    color: #00ff99;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-info p {
    color: #aaffee;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.contact-methods {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 128, 0.1);
    border-radius: 10px;
    margin-right: 15px;
    color: #00ff99;
}

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

.method-text h4 {
    color: #00ff99;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.method-text p {
    color: #aaffee;
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-form-container {
    flex: 1.5;
    padding: 40px;
    background: rgba(0, 20, 10, 0.7);
    border: 1px solid rgba(0, 255, 128, 0.3);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.contact-form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 128, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.binary-decoration {
    position: absolute;
    font-family: monospace;
    color: rgba(0, 255, 128, 0.15);
    font-size: 8rem;
    bottom: -20px;
    right: 10px;
    opacity: 0.5;
    user-select: none;
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #00ff99;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: rgba(0, 20, 10, 0.7);
    border: 1px solid rgba(0, 255, 128, 0.3);
    border-radius: 8px;
    color: #00ff99;
    font-family: monospace;
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ff99;
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.3);
}

.submit-btn {
    padding: 15px 25px;
    background: rgba(0, 255, 128, 0.15);
    color: #00ff99;
    font-weight: bold;
    border: 1px solid #00ff99;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: rgba(0, 255, 128, 0.25);
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.4);
}

.submit-btn:hover svg {
    transform: translateX(5px);
}


/* === AURA === */
.aura {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.binary {
    position: absolute;
    font-size: 14px;
    color: #00ff99;
    opacity: 0.8;
    pointer-events: none;
    user-select: none;
    animation: fadeOut 1s linear forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(-10px);
    }

    to {
        opacity: 0;
        transform: translateY(-50px);
    }
}

#binaryDisplay {
    font-size: 20rem;
    color: #00ff99;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.home-content {
    max-width: 700px;
    margin-top: 40px;
    text-align: center;
}

.home-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00ffcc;
}

.home-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #aaffee;
    margin-bottom: 16px;
}


/* === PRODUCT === */
/* Products & Services Section Styling */
#products {
    min-height: 100vh;
    padding: 120px 40px 60px;
    position: relative;
    z-index: 2;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 128, 0.1) 0%, transparent 70%);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: rgba(0, 20, 10, 0.7);
    border: 1px solid rgba(0, 255, 128, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 128, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 128, 0.15);
    border-color: rgba(0, 255, 128, 0.5);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: rgba(0, 255, 128, 0.1);
    border-radius: 12px;
    color: #00ff99;
    position: relative;
    z-index: 1;
}

.product-icon svg {
    width: 32px;
    height: 32px;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #00ff99;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.product-card p {
    color: #aaffee;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    color: #aaffee;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #00ff99;
}

a.explore-btn {
    display: inline-block;
    text-decoration: none;
    padding: 8px 18px;
    background: transparent;
    color: #00ff99;
    font-weight: bold;
    border: 1px solid #00ff99;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

a.explore-btn:hover {
    background: rgba(0, 255, 128, 0.15);
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.3);
}

.primary-btn {
    padding: 10px 22px;
    background: #00ff99;
    color: #0a0a0a;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.primary-btn:hover {
    background: #00cc77;
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.5);
}

.service-highlight {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 20, 10, 0.7);
    border: 1px solid rgba(0, 255, 128, 0.3);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.service-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 128, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.binary-decoration {
    font-size: 6rem;
    font-family: monospace;
    color: rgba(0, 255, 128, 0.2);
    margin-bottom: 1rem;
    user-select: none;
    position: relative;
    z-index: 1;
}

.service-content {
    flex: 1;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #00ff99;
    margin-bottom: 15px;
}

.service-content p {
    color: #aaffee;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* About Section Enhanced */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(0, 20, 10, 0.4);
    border: 1px solid rgba(0, 255, 128, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-image-container {
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Create a perfect square for the image container */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    max-width: 350px;
    /* Prevent it from growing too large */
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the square container */
    border-radius: 12px;
    transition: transform 0.4s ease;
    display: block;
}

.card-image-container:hover img {
    transform: scale(1.03);
}

.card-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0, 255, 128, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

.about-content {
    flex: 2;
    min-width: 300px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 128, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff99;
    border: 1px solid rgba(0, 255, 128, 0.3);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(0, 255, 128, 0.2);
    transform: translateY(-3px);
}

.contact-btn {
    padding: 10px 20px;
    background: transparent;
    color: #00ff99;
    border: 1px solid #00ff99;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.contact-btn:hover {
    background: rgba(0, 255, 128, 0.15);
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.3);
}

/* Tabs */
.tabs-container {
    margin-top: 40px;
    border: 1px solid rgba(0, 255, 128, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 20, 10, 0.7);
}

.tabs {
    display: flex;
    background: rgba(0, 20, 10, 0.9);
    border-bottom: 1px solid rgba(0, 255, 128, 0.3);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px;
    color: #aaffee;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(0, 255, 128, 0.1);
}

.tab-btn.active {
    color: #00ff99;
    background: rgba(0, 255, 128, 0.1);
    border-bottom: 2px solid #00ff99;
}

.tab-content {
    display: none;
    padding: 25px;
}

.tab-content.active {
    display: block;
}

.skill-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.skill-list li {
    position: relative;
    padding-left: 25px;
    color: #aaffee;
}

.skill-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #00ff99;
}

/* Timeline for Experience and Education */
.timeline {
    position: relative;
    padding: 0;
}

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

.timeline-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: rgba(0, 255, 128, 0.3);
}

.timeline-item::after {
    content: "";
    position: absolute;
    top: 6px;
    left: -5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #00ff99;
}

.timeline-date {
    font-size: 0.9rem;
    color: #00ff99;
    margin-bottom: 5px;
}

.timeline-content {
    padding-bottom: 10px;
}

.timeline-content h4 {
    margin: 0 0 5px 0;
    color: #aaffee;
}

.timeline-content p {
    color: #aaffee;
    margin: 0;
}

/* Projects Section */
#projects {
    min-height: 100vh;
    padding: 120px 40px 60px;
    position: relative;
    z-index: 2;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 128, 0.05) 0%, transparent 70%);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: rgba(0, 20, 10, 0.7);
    border: 1px solid rgba(0, 255, 128, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 128, 0.15);
}

.project-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    color: #00ff99;
    margin-bottom: 10px;
}

.project-content p {
    color: #aaffee;
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-tags span {
    background: rgba(0, 255, 128, 0.1);
    border: 1px solid rgba(0, 255, 128, 0.3);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00ff99;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    color: #aaffee;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #00ff99;
}

/* Social Links in Contact Methods */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 128, 0.1);
    border-radius: 50%;
    color: #00ff99;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 255, 128, 0.2);
    transform: translateY(-3px);
}

/* === Responsive Design === */

/* Mobile View */

@media (max-width: 768px) {
    .service-highlight {
        flex-direction: column;
        text-align: center;
    }

    .binary-decoration {
        font-size: 3rem;
        margin: 10px 0;
        margin-bottom: 1rem;
    }

    .service-content {
        padding: 20px 0;
    }

    .product-card {
        min-height: auto;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-image-container {
        max-width: 300px;
    }

    .timeline-item {
        padding-left: 20px;
    }

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

    .tabs {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    #products {
        padding: 100px 20px 40px;
    }

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

    .product-card {
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }

    .method-icon {
        width: 40px;
        height: 40px;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    section {
        padding: 100px 20px;
    }

    .card {
        width: 90%;
    }

    #home {
        padding: 100px 16px 40px;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .home-content {
        max-width: 100%;
        margin-top: 0;
    }

    .home-content h1 {
        font-size: 2.5rem;
    }

    .home-content p {
        font-size: 1rem;
    }

    .text {
        color: #aaffee;
        margin-bottom: 16px;
        text-align: center;
        position: relative;
        margin-top: 20px;
        padding: 0 10px;
        font-size: 1rem;
        line-height: 1.5;
        max-width: 90%;
        margin: 0 auto;
    }

    .card-image-container {
        overflow: hidden;
        border-radius: 12px;
        height: 400px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        margin: 0 auto;
    }

    .menu-toggle {
        position: absolute;
        top: 18px;
        right: 20px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-container {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 100px 20px 40px;
    }

    .contact-info,
    .contact-form-container {
        padding: 30px;
    }

    .binary-decoration {
        font-size: 5rem;
    }
}

/* Hamburger Menu Styling */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 30, 15, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        font-size: 2rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s, transform 0.3s;
    }

    .nav-links.show a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links a:nth-child(5) {
        transition-delay: 0.5s;
    }
}

/* === IMAGE CONTAINER === */
@media (max-width: 600px) {
    .about-image-container {
        padding: 12px;
        max-width: 280px;
    }

    .card-image-container {
        max-width: 250px;
    }

    .card-image-container {
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: initial;
    }

    .about-content {
        padding: 0 10px;
    }
}

@media (max-width: 350px) {
    .about-image-container {
        min-width: 200px;
        padding: 10px;
    }

    .card-image-container {
        max-width: 180px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

}