body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #e0e0e0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #0a0a0a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1e1e1e;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    color: #00bfff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #c0c0c0;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #00bfff;
}
main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
section {
    margin-bottom: 2rem;
}
.design-section #design-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.design-post {
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 1rem;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

.design-post img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}
footer {
    background: #0a0a0a;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}
form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #1e1e1e;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

form input, form textarea {
    background: #2b2b2b;
    color: #fff;
    padding: 0.5rem;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form button {
    background: #00bfff;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #009acb;
}
button {
    background: #00bfff;
    color: #fff;
    padding: 10px 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    margin: 0.5rem auto;
    display: block;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: #009acb;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}
.about-me-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.about-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.about-text p {
    margin: 0.5rem 0;
}
#SocailIcons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.icons {
    text-align: center;
}

.icon {
    display: inline-block;
    margin-bottom: 10px;
}

.icon svg {
    width: 40px; /* Adjust the size of the icons */
    height: 40px;
    transition: transform 0.3s ease;
}

.icon:hover svg {
    transform: scale(1.2);
}

.iconName {
    font-size: 14px;
    margin-top: 5px;
    color: #ffffff;
}

.instaIcon .icon {
    color: #ffffff;
}

.linkedin .icon {
    color: #ffffff;
}

.github .icon {
    color: #ffffff;
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    color: #00bfff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 2rem;
}

#figma-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    align-items: start;
}

.figma-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.figma-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

.figma-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.figma-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.figma-card-body h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.figma-link-button {
    background-color: #00bfff;
    color: white;
    padding: 6px 12px;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.figma-link-button:hover {
    background-color: #009acb;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 20px;
    }

    .logo-container {
        justify-content: center;
        width: 100%;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .logo {
        height: 50px;
        width: 50px;
    }

    nav ul {
        flex-direction: row;
        gap: 10px;
        padding: 0;
        margin: 0;
        width: 100%;
        text-align: left;
    }

    .about-me-container {
        flex-direction: column;
        gap: 1rem;
    }

    .about-photo img {
        width: 120px;
        height: 120px;
    }
}