::selection{
    background-color: #daa520;
    color: #fff;
}
:root {
    --primary-color: #daa520; /* Goldenrod */
    --secondary-color: #b8860b; /* DarkGoldenrod */
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --card-bg: #1e1e1e;
  }
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  html {
      scroll-behavior: smooth;
  }
  
  body {
      font-family: 'Arial', sans-serif;
      background-color: var(--dark-bg);
      color: var(--light-text);
      line-height: 1.6;
  }
  
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  a {
      text-decoration: none;
      color: var(--light-text);
  }
  
  ul {
      list-style: none;
  }
  
  h1, h2, h3 {
      margin-bottom: 20px;
  }
  
  h2 {
      text-align: center;
      color: var(--primary-color);
      font-size: 2rem;
      margin-bottom: 40px;
  }
  
  section {
      padding: 80px 0;
  }
  
  /* Header & Navigation */
  header {
      background-color: var(--darker-bg);
      position: fixed;
      width: 100%;
      z-index: 1000;
  }
  
  nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
  }
  .hamburger {
    display: none;
  }
  .logo a {
      font-size: 1.8rem;
      font-weight: bold;
  }
  
  .nav-links {
      display: flex;
  }
  
  .nav-links li {
      margin-left: 30px;
  }
  
  .nav-links a {
      transition: color 0.3s;
  }
  
  .nav-links a:hover {
      color: var(--primary-color);
  }
  .logo-name img{
    display: none;
  }
  .nav-footer, .logo-name{
    display: none;
  }
  
  /* Hero Section */
  .hero {
      background-color: var(--darker-bg);
      padding-top: 150px;
      text-align: center;
  }
  
  .profile-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 30px;
      border: 5px solid var(--primary-color);
  }
  
  .profile-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .hero-content {
      max-width: 700px;
      margin: 0 auto;
  }
  
  .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }
  
  .highlight {
      color: var(--primary-color);
  }
  
  .hero p {
      color: var(--gray-text);
      margin-bottom: 30px;
  }
  
  .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 50px;
  }
  
  .btn {
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: bold;
      transition: all 0.3s;
      display: inline-block;
  }
  
  .primary-btn {
      background-color: var(--primary-color);
      color: white;
  }
  
  .primary-btn:hover {
      background-color: transparent;
      transform: translateY(-3px);
  }
  
  .secondary-btn {
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
  }
  
  .secondary-btn:hover {
      background-color: var(--primary-color);
      color: white;
      transform: translateY(-3px);
  }
  
  /* Tech Stack */
  .tech-stack {
      margin-top: 50px;
  }
  
  .tech-stack h3 {
      color: var(--gray-text);
      font-size: 1rem;
      margin-bottom: 20px;
  }
  
  .tech-icons {
      display: flex;
      justify-content: center;
      gap: 30px;
  }
  
  .tech-icon {
      width: 50px;
      height: 50px;
      background-color: var(--card-bg);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: transform 0.3s;
  }
  
  .tech-icon:hover {
      transform: translateY(-5px);
      color: var(--primary-color);
  }
  
  /* Projects Section */
  .projects {
      background-color: var(--dark-bg);
  }
  
  .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
  }
  
  .project-card {
      background-color: var(--card-bg);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s;
  }
  
  /* Update the hover shadow color for project cards */
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.3); /* Goldenrod shadow */
  }
  
  
  .project-img {
      height: 180px;
      overflow: hidden;
  }
  
  .project-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
  }
  
  .project-card:hover .project-img img {
      transform: scale(1.1);
  }
  
  .project-info {
      padding: 20px;
  }
  
  .project-info h3 {
      color: var(--primary-color);
      margin-bottom: 5px;
  }
  
  .project-info p {
      color: var(--gray-text);
      font-size: 0.9rem;
  }
  
  /* Experience Section */
  .experience {
      background-color: var(--darker-bg);
  }
  
  .experience-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
  }
  
  .experience-item {
      display: flex;
      background-color: var(--card-bg);
      border-radius: 10px;
      padding: 20px;
      transition: transform 0.3s;
  }
  
  .experience-item:hover {
      transform: translateX(10px);
  }
  
  .company-logo {
      width: 60px;
      height: 60px;
      background-color: var(--darker-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-right: 20px;
      flex-shrink: 0;
  }
  
  .experience-details h3 {
      margin-bottom: 5px;
  }
  
  .duration {
      color: var(--primary-color);
      font-size: 0.9rem;
      margin-bottom: 10px;
  }
  
  .description {
      color: var(--gray-text);
  }
  
  /* Contact Section */
  .contact {
      background-color: var(--dark-bg);
      text-align: center;
  }
  
  .contact-content {
      max-width: 700px;
      margin: 0 auto;
  }
  
  .contact-content p {
      margin-bottom: 20px;
      color: var(--gray-text);
  }
  
  .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
  }
  
  .social-icon {
      width: 50px;
      height: 50px;
      background-color: var(--card-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: all 0.3s;
  }
  
  .social-icon:hover {
      background-color: var(--primary-color);
      transform: translateY(-5px);
  }
  
  /* Footer */
  footer {
      background-color: var(--darker-bg);
      text-align: center;
      padding: 20px 0;
      color: var(--gray-text);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {

    .hamburger{
        display: block;
    }
    .nav-links.open{
        display: flex;
    }
    .nav-image{
        position: relative;
    }
    .inner-image{
        background-image: url(images/nav-image.jpg);
        background-position: center;
        background-size: cover;
        height: 200px;
        width: 100%;
    }
    .logo-name{
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fcf8f8b7;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        font-weight: bolder;
        font-size: 30px;
    }
    .logo-name img{
        border-radius: 50%;
        display: block;
        width: 50px;
        position: absolute;
        top: 10%;
        left: 40%;
        height: 50px;
    }
      .nav-links {
          display: none;
          flex-direction: column;
          justify-content: start;
          gap: 30px;
          position: absolute;
          left: 0;
          top: 0;
          background-color: #2e2e2e;
          height: 100vh;
          width: 250px;
          animation: slideIn 500ms alternate;
      }
      @keyframes slideIn {
        from{
            left: -30%;
        }
        to{
            left: 0;
        }
      }
      .nav-footer{
        position: absolute;
        bottom: 0;
        width: 100%;
        display: block;
      }
      
      .hero h1 {
          font-size: 2rem;
      }
      
      .cta-buttons {
          flex-direction: column;
          align-items: center;
      }
      
      .project-grid {
          grid-template-columns: 1fr;
      }
      
      .experience-item {
          flex-direction: column;
      }
      
      .company-logo {
          margin-bottom: 20px;
          margin-right: 0;
      }
  }