html {
  scroll-padding-top: 60px;
}


.my-navbar {
  background-color: white !important;
}

.br-desktop {
  display: none;
}


.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}


.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 70px;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-title {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: center;
}

.sidebar a {
  color: #000000;
  text-decoration: none;
}

.social-media {
  list-style: none;
  padding: 0;
  margin: 0;
}

.logos-item {
  margin-bottom: 20px;
}

.logos {
  width: 30px;
  transition: transform 0.2s ease-in-out;
}

.logos:hover {
  transform: scale(1.1);
}

.content {
  margin-left: 60px;
  padding: 2rem;
}

.main-content,
.resume,
#resume,
#skills,
.experiences,
#experiences,
.projects,
.skills,
.experience-section,
#projects {
  padding-top: 60px;
  padding-left: 60px 
}

.mytext{
  align-items: center;
  justify-content: center;
}

.hello {
    margin-top: 0px;
  font-size: 100px;
  margin-bottom: 10px;
}

.bitAboutMe {
  font-size: 30px;
  margin-bottom: 0;
}
.mypic img {
  width: 450px;
  border-radius: 250px;
}

.section-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid black;
  opacity: 0.6;
}

.section-divider span {
  padding: 0 10px;
  font-size: large;
  white-space: nowrap;
}



.job-header {
    width: 30%;
    flex-shrink: 0;
    padding-right: 40px;
    position: relative;
}
.job-header::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #333;
}
.job-title {
    font-size: 24px;
    font-weight: normal;
    margin: 0 0 8px 0;
}
.company-name {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 20px 0;
    color: #666;
}
.date-range {
    font-size: 16px;
    color: #333;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #333;
}
.job-details{
  padding-left: 51px !important
}

.job-section.right .job-header {
    /* padding-left: 40px; */
    padding-right: 12px;
    text-align: right;
}

.job-section.right .job-header::after {
    left: 0;
    right: auto;
}

.job-section.right .job-details {
    padding-right: 40px;
    padding-left: 0 !important;
}

.project-image {
    width: 350px;
    height: 200px;
}

.small-project-image {
    width: 120px;
    height: 80px;
}
.project-title-sm{
  font-size: 20px;
}

.featured-project,.projects-grid{
  margin: 50px !important;
}
.project-tech {
      display: flex;
}
.prog-lang-img{
  width:  50px;
}
.prog-lang-img-sm{
  height: 20px;
}
.feather{
  max-width: 20px;
  color: #000;
}
.project-divider {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin: 20px 0;
}

@media (min-width: 769px) {
  .br-desktop {
    display: inline;
  }
}

@media (max-width: 769px) {
  .mypic img {
    width: 250px;
  }
  #resume,
  #skills,
  .skills,
  .experiences,
  #experiences,
  #projects{
    padding-left: 0;
  }
  .hello{
    margin-top: 0px;
  font-size: 50px;
  }

  .sidebar {
    display: none;
  }

  .content {
    margin-left: 0;
    padding: 1rem;
  }

  .job-header {
      width: 100%;
      padding-right: 0;
      padding-left: 0;
      margin-bottom: 20px;
      text-align: left;
  }

  .job-header::after {
      display: none;
  }
  .company-name{
    margin-bottom: 0px;
  }
  .date-range {
      border-top: none;
      padding-top: 0;
  }
  .job-details{
    padding-left: 12px !important;
    padding-right: 12px !important
  }
  .job-section.right .job-header {
      padding-left: 12px !important;
      padding-right: 12px !important;
      text-align: left;
  }
  .job-section.right .job-header::after {
      display: none;
  }
  .job-section.right .job-details {
      padding-left: 12px !important;
      padding-right: 12px !important;
  }
  .project-image {
      width: 100%;
      height: 200px;
  }
  .small-project{
    margin-bottom: 10px;
  }
  .small-project-image {
      width: 100%;
      height: 120px;
  }
  .featured-project,.projects-grid{
  margin: 0px !important;
}
  .project-links{
    margin-bottom: 5px;
  }
}

/* animation for skills */

@keyframes bar-grow {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.skill-label {
  font-weight:bold;
  text-align: left;
  margin-bottom: 6px;
  font-size: 14px;
}

.skill-bar {
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.skill-fill {
  height: 100%;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
  animation: bar-grow 1s ease forwards;
}

/* Custom widths + animation delays */
.fill-html      { width: 80%; animation-delay: 0.3s; }
.fill-css       { width: 75%; animation-delay: 0.2s; }
.fill-js        { width: 70%; animation-delay: 0.4s; }
.fill-linux     { width: 90%; animation-delay: 0.7s; }

.fill-python    { width: 90%; animation-delay: 0.6s; }
.fill-java    { width: 75%; animation-delay: 0.6s; }
.fill-c    { width: 80%; animation-delay: 0.6s; }
.fill-cpp    { width: 70%; animation-delay: 0.6s; }

.fill-react     { width: 85%; animation-delay: 0.7s; }
.fill-flask     { width: 70%; animation-delay: 0.7s; }
.fill-node     { width: 70%; animation-delay: 0.7s; }




