 html {
      scroll-behavior: smooth;
    }

    #home,
    #education,
    #skillSection,
    #about,
    #experience,
    #contact {
      scroll-margin-top: 100px;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    }

    body {
      background-color: white;
      line-height: 1.6;
      color: #0b192c;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    hr {
      margin: 1rem 0;
      border: none;
      border-top: 1px solid #ddd;
    }

    header {
      background-color: #090040;
      border-bottom: 1px solid #ddd;
      color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
    }

    #menuBtn,
    #closeBtn {
      background: none;
      border: none;
      font-size: 1.75rem;
      cursor: pointer;
      color: white;
    }

    #closeBtn {
      display: none;
    }

    nav#navbar {
      width: 100%;
      display: none;
    }

    ul.nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1rem 0;
      background-color: #090040;
    }

    ul.nav-list li a {
      text-decoration: none;
      font-weight: 700;
      color: white;
      font-size: 1rem;
      transition: color 0.3s ease, transform 0.2s ease;
    }

    ul.nav-list li a:hover,
    ul.nav-list li a:focus {
      color: #ffcc00;
      transform: scale(1.05);
      outline: none;
      border-bottom: 4px solid #ffcc00;
    }

    main {
      flex-grow: 1;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .intro-section-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      align-items: center;
      min-height: 65dvh;
      color: #0b192c;
    }

    .intro-section {
      margin: 2rem;
      flex: 1 1 300px;
    }

    .intro-section h1 {
      font-size: 2.3rem;
      line-height: 1.2;
    }

    .intro-section h1 span {
      color: #ffcc00;
    }

    .intro-section h2 {
      margin-top: 0.5rem;
      color: #0b192c;
      font-size: 1.7rem;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
    }

    .tagline {
      margin: 0.5rem 0 1rem;
      font-size: 1.5rem;
      font-style: italic;
      color: #b13bff;
      font-weight: 700;
    }

    .skills-btn {
      height: 40px;
      width: 110px;
      font-size: 1rem;
      font-weight: 700;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
      border: none;
      background-color: #090040;
      color: #ffcc00;
      transition: background-color 0.3s ease;
    }

    .skills-btn:hover,
    .skills-btn:focus {
      background-color: #1e3e62;
      outline: none;
    }

    .profile-image-section {
      flex: 1 1 200px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .profile-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 5px solid #ffcc00;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
      object-fit: cover;
    }

    .education-section {
      margin-top: 3rem;
      margin-bottom: 3rem;
      padding: 0 1rem;
    }

    .education-entry {
      background-color: #f9f9f9;
      border-left: 4px solid #ffcc00;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      border-radius: 10px;
      transition: transform 0.3s ease;
      padding: 1rem 1.5rem;
      margin-bottom: 1.5rem;
    }

    .education-entry:hover {
      transform: translateY(-4px);
    }

    .education-entry h3 {
      font-size: 1.25rem;
      color: #1e3e62;
      margin-bottom: 0.5rem;
    }

    .education-entry p {
      margin: 0.25rem 0;
      font-size: 1rem;
      color: #333;
    }

    .skills-section {
      scroll-margin-top: 80px;
      margin-top: 3rem;
      margin-bottom: 3rem;
      padding: 0 1rem;
    }

    .navSubheading {
      color: #ffcc00;
      background-color: black;
      box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
      display: inline-block;
      text-align: center;
      padding: 0.25rem 0.75rem;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    h2#skillSection {
      font-size: 2.5rem;
      width: max-content;
      margin: 0 auto;
    }

    .skillContainer {
      padding: 10px;
      margin-bottom: 1rem;
      border-left: 4px solid #ffcc00;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .skillContainer:hover {
      transform: translateY(-4px);
    }

    h4 {
      margin-bottom: 0.75rem;
      color: #1e3e67;
      font-size: 1.12rem;
      font-weight: 700;
    }

    .skill-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.625rem;
      margin-bottom: 1.25rem;
    }

    .skill-box {
      flex: 0 0 65px;
      height: 65px;
      background-color: #eee;
      border-radius: 8px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }

      .skill-box {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 5px;
}

.skill-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

    footer {
      padding: 1.25rem 1rem;
      background-color: #090040;
      color: white;
      font-weight: 500;
      text-align: center;
      font-size: 1rem;
    }

/* Medium Screens  */


    @media (min-width: 1024px) {
      body {
        background-image: url(bk\ 2.jpg);
        background-repeat: no-repeat;
        background-size: contain;
      }

      #menuBtn,
      #closeBtn {
        display: none !important;
      }

      nav#navbar {
        display: block !important;
        width: auto;
      }

      ul.nav-list {
        flex-direction: row;
        background-color: transparent;
        gap: 1.25rem;
        padding: 0;
      }

      ul.nav-list li a {
        font-size: 1.25rem;
        color: white;
        margin-right: 0.5rem;
        transition: color 0.3s ease, transform 0.2s ease;
      }

      ul.nav-list li a:hover,
      ul.nav-list li a:focus {
        color: #ffcc00;
        transform: scale(1.05);
      }

      .intro-section-wrapper {
        height: 85dvh;
      }

      .intro-section {
        margin-left: 2rem;
      }

      .intro-section h1 {
        font-size: 2.8rem;
      }

      .intro-section h2 {
        font-size: 2.2rem;
      }

      .intro-section p {
        font-size: 1.5rem;
      }

      .skills-btn {
        height: 50px;
        width: 150px;
        font-size: 1.5rem;
        margin-top: 1.25rem;
      }

      .profile-image-section img {
        width: 300px;
        height: 300px;
        transition: transform 0.3s ease;
      }

      .profile-image-section img:hover {
        transform: translateY(-4px);
      }

      .skill-box {
        flex: 0 0 110px;
        height: 110px;
      }

      h4 {
        font-size: 1.5rem;
      }

      footer {
        font-size: 1.25rem;
      }
    }

    #about {
      margin-top: 3rem;
      margin-bottom: 3rem;
      padding: 0 1rem;
    }

    #about .subheadingContainer {
      margin-bottom: 1.5rem;
      text-align: left;
      padding-left: 0.5rem;
    }

    #about .navSubheading {
      color: #ffcc00;
      background-color: black;
      box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
      display: inline-block;
      text-align: center;
      padding: 0.25rem 0.75rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .about-box {
      background-color: #f9f9f9;
      border-left: 4px solid #ffcc00;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      border-radius: 10px;
      transition: transform 0.3s ease;
      padding: 1rem 1.5rem;
      margin-bottom: 1.5rem;
    }

    .about-box:hover {
      transform: translateY(-4px);
    }

    .about-box h3 {
      font-size: 1.25rem;
      color: #1e3e62;
      margin-bottom: 0.5rem;
    }

    .about-box p {
      margin: 0.25rem 0;
      font-size: 1rem;
      color: #333;
    }
