:root {
    --bg-color: #1a1a1a;
    --nav-bg: #333c3d;
    --text-color: #bbbbbb;
    --accent-color: #64ffda;
    --font-primary: 'Helvetica', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-base: 18px;
    --container-width: 1200px;
    --padding-inline: 2rem;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(100, 255, 218, 0.05);
    backdrop-filter: blur(100px);
    padding: 10px 30px;
    position: sticky;
    top: 0;
    width: 100%;
    height: 50px;
}

.logo-container {
    width: 100px;
    height: 50px;
}

.logo {
    max-width: 100%;
    max-height: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: var(--text-color);
    margin: 4px;
    transition: all 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    transition: color 1s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: var(--bg-color);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        transition: max-height 0.3s ease-in-out;
    }

    .nav-links.open {
        max-height: 300px;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Main Content */
main {
    padding-top: 1rem;
}

section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem 2rem;
}

/* Main Content */
main {
    padding-top: 1rem;
}

section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem 2rem;
}

/* Resume Section */
 .resume-container {
    background-color: rgba(100, 255, 218, 0.05);
    color: var(--text-color);
    text-align: center;
    font-size: var(--font-size-base);
    text-decoration: none;
    position: relative;
    padding: 0.1rem;
    border-radius: 10%;
 }

  .resume-container :hover {
    color: var(--accent-color);
}

    .resume-container a {
    text-decoration: none;
    color: var(--text-color);
    font-size: var(--font-size-base);
    transition: color 0.3s ease;
    text-align: center;
}
/* Profile Section */
.profile-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 30px;
}

.profile-image img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px #005d477e;
}

.profile-content h1 {
    font-size: 2rem;
}

.profile-content h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.profile-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Skills Section */
.skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    max-width: var(--container-width);
    margin-top: 2rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 20px;
    border-radius: 10px;
    background: rgba(100, 255, 218, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.skill-item i {
    font-size: 3rem;
    color: var(--accent-color);
}

.skill-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.skill-item p {
    font-size: 0.9rem;
    color: #bbbbbb;
    text-align: center;
}

.skills h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.skill-item span {
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    display: flex;
    background: rgba(100, 255, 218, 0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.review-card cite {
    display: block;
    margin-top: 1rem;
    color: var(--accent-color);
}

.review-card h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
}

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

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Work Section */
.timeline {
    margin-top: 2rem;
}

.timeline-item {
    border-left: 2px solid var(--accent-color);
    padding-left: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-color);
}

#work h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-content {
    padding: 1.5rem;
}

#projects h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tech-stack span {
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent-color);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-container {
    max-width: 600px;
    margin: 2rem auto;
}

#contact {
    font-family: var(--font-primary);
}

#contact h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 2vw, 1rem);
    overflow: hidden;
    
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

button[type="submit"] {
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s ease;
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 2vw, 1rem);
}

button[type="submit"]:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .profile-image img {
        width: 200px;
        height: 200px;
    }

    .skills {
        justify-content: center;
    }

    #contact {
        padding: 2rem 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }

    .profile-content h1::after {
        width: 40px;
        height: 2px;
    }

    .profile-content h1:hover::after {
        width: 70px;
    }

    .skills-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .skill-item {
        padding: 1rem;
    }

    .skill-item i {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    #contact h2 {
        text-align: center;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        overflow: hidden;
    }
}

.hamburger {
    cursor: pointer;
  }
  
  .hamburger input {
    display: none;
  }
  
  .hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 2em;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line {
    fill: none;
    stroke: var(--accent-color);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line-top-bottom {
    stroke-dasharray: 12 63;
  }
  
  .hamburger input:checked + svg {
    transform: rotate(-45deg);
  } 
  