/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgb(249, 250, 251);
    color: rgb(17, 24, 39);
    line-height: 1.5;
}

/* Layout */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgb(243, 244, 246);
}

.nav {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgb(17, 24, 39);
    text-decoration: none;
}

.nav-links {
    display: none;
}

.nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-links a {
    color: rgb(55, 65, 81);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: rgb(17, 24, 39);
}

.menu-button {
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 48rem;
    margin: 0 auto;
}

.profile-image {
    width: 20rem;
    height: 20rem;
    border-radius: 9999px;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: rgb(17, 24, 39);
    margin-bottom: 1rem;
}

.typing-container {
    font-size: 1.5rem;
    color: rgb(75, 85, 99);
    margin-bottom: 1.5rem;
    min-height: 2rem;
}

.typing {
    border-right: 2px solid rgb(75, 85, 99);
    padding-right: 5px;
    color: #3b82f6;
    font-weight: 600;
}

.hero p {
    font-size: 1.25rem;
    color: rgb(75, 85, 99);
    margin-bottom: 2rem;
}

/* Skills Section */
.skills {
    padding: 5rem 0;
    background-color: white;
}

.skills h2 {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.skill-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.skill-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(17, 24, 39);
}

.skill-card ul {
    list-style: none;
    color: rgb(75, 85, 99);
}

.skill-card li {
    margin-bottom: 0.5rem;
}

/* Experience Section */
.experience {
    padding: 5rem 0;
}

.experience h2 {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.experience-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid rgb(243, 244, 246);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(17, 24, 39);
}

.company {
    color: rgb(75, 85, 99);
}

.date {
    color: rgb(107, 114, 128);
}

.responsibilities {
    list-style-position: inside;
    color: rgb(75, 85, 99);
    margin-bottom: 1rem;
}

.responsibilities li {
    margin-bottom: 0.5rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: rgb(219, 234, 254);
    color: rgb(29, 78, 216);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

/* Collaborate Section */
.collaborate {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.collaborate h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.collaborate-content {
    max-width: 48rem;
    margin: 0 auto;
}

.collaborate-content p {
    color: rgb(75, 85, 99);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.collaborate-content ul {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.collaborate-content li {
    color: rgb(55, 65, 81);
    font-size: 1.125rem;
    padding: 1rem;
    background-color: rgb(249, 250, 251);
    border-radius: 0.5rem;
}

.cta-button {
    display: inline-block;
    background-color: rgb(29, 78, 216);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: rgb(30, 64, 175);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact h2 {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    max-width: 48rem;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    padding: 2rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-item span {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(17, 24, 39);
}

.contact-item a {
    color: rgb(29, 78, 216);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: rgb(30, 64, 175);
}

/* Footer */
.footer {
    background-color: white;
    border-top: 1px solid rgb(243, 244, 246);
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: rgb(75, 85, 99);
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: rgb(17, 24, 39);
}

.copyright {
    color: rgb(107, 114, 128);
    font-size: 0.875rem;
}

/* Media Queries */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
    }

    .menu-button {
        display: none;
    }

    .experience-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}





/* adding */

.tag-hack {
    background-color: lightgreen;
    color: rgb(0, 0, 0);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin: 10px;
}
.tag-patent {
    width: 22%;
    background-color: rgb(241, 164, 149);
    color: rgb(0, 0, 0);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    display: inline;
    margin: 10px;

}
.pat{
    margin: 10px;
}

.tag-ss {
    background-color: lightgreen;
    color: rgb(0, 0, 0);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin: 10px;
    width: 13%;
}