* {
  box-sizing: border-box;
}

.dark-mode {
  background-color: black;
  color: white;
}

body {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8 !important;
  color: black;
}
@media screen and (max-width: 992px) {
  body {
    font-size: 16px;
  }
  h2,
  h4 {
    text-align: center;
  }
}

a {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none !important;
}

p {
  margin-bottom: 1.3em;
  font-family: "Montserrat", sans-serif;
}
x {
  margin-bottom: 1.5em;
  background-color: darkkhaki;
  backface-visibility: visible;
}

h1,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin: 0 0 30px 0;
}

h2 {
  font-weight: 200;
  margin: 0 0 0px 0;
  margin-top: 0px !important;
}
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin: 0 0 30px 0;
}
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 15px;
  margin: 0 0 30px 0;
}

figure {
  margin-bottom: 2.5em;
  float: left;
  width: 100%;
}
figure figcaption {
  font-size: 16px;
  width: 80%;
  margin: 20px auto 0px auto;
  color: #b3b3b3;
  font-style: italic;
  font-family: "Quicksand", Arial, sans-serif;
}
@media screen and (max-width: 480px) {
  figure figcaption {
    width: 100%;
  }
}

::-webkit-selection {
  color: #fff;
  background: #2c98f0;
}

::selection {
  color: #fff;
  background: #2c98f0;
}

#colorlib-page {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#colorlib-aside {
  padding-top: 3em;
  padding-bottom: 1px;
  float: left;
  width: 300px;
  position: fixed;
  z-index: 1001;
  background: linear-gradient(135deg, rgb(255, 221, 153), rgb(249, 191, 63));
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  left: 60px;
}
@media screen and (max-width: 768px) {
  #colorlib-aside {
    position: relative;       /* ✨ was: fixed (in base CSS), now relative */
    width: 100%;              /* ✨ full width */
    transform: none;          /* ✨ disables slide-out */
    padding-top: 2em;         /* ✨ keep padding consistent */
    background-color: #f9bf3f;
    height: auto;             /* ✨ avoid -webkit-fill-available */
    left: 0;
    z-index: auto;            /* ✨ removes stacking over content */
  }

  #colorlib-main {
    width: 100%;              /* ✨ makes main content full width */
    padding: 0 1em;
  }
}

#colorlib-aside .author-img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

#colorlib-aside .author-img img {
  height: 100%;
  object-fit: contain;
  border: 1px solid black;
  border-radius: 75px;
}
#colorlib-aside h1 {
  font-family: "Raleway", sans-serif;
}
#colorlib-aside .position {
  display: block;
  margin-bottom: 2em;
  font-size: 12px;
  text-transform: uppercase;
}
#colorlib-aside #colorlib-logo {
  text-align: right;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 0.5em;
  display: block;
  width: 100%;
}
#colorlib-aside #colorlib-logo a {
  display: block;
  text-align: center;
  color: #000;
  padding-right: 0.3em;
}
#colorlib-aside #colorlib-main-menu {
  display: block;
  width: 100%;
}
#colorlib-aside #colorlib-main-menu .collapse {
  display: block !important;
}
#colorlib-aside #colorlib-main-menu ul {
  text-align: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #colorlib-aside #colorlib-main-menu ul {
    margin: 0 0 2em 0;
  }
}
#colorlib-aside #colorlib-main-menu ul li {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#colorlib-aside #colorlib-main-menu ul li a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  position: relative;
  padding: 10px 0;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
#colorlib-aside #colorlib-main-menu ul li a:after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 7px;
  left: 0;
  right: 0;
  background-color: #2c98f0;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#colorlib-aside #colorlib-main-menu ul li a:hover {
  text-decoration: none;
  color: black;
}
#colorlib-aside #colorlib-main-menu ul li a:hover:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
#colorlib-aside #colorlib-main-menu ul li.active a {
  font-size: 15px;
  font-weight: 600;
}
#colorlib-aside #colorlib-main-menu ul li.active a:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
#colorlib-aside .colorlib-footer {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #colorlib-aside .colorlib-footer {
    position: fixed;
    height: auto;
  }
}
#colorlib-aside .colorlib-footer span {
  display: block;
}
#colorlib-aside .colorlib-footer ul {
  padding: 0 20px;
  margin: 0 0 10px 0;
}
#colorlib-aside .colorlib-footer ul li {
  padding: 0 20px;
  margin: 0 0 10px 0;
  display: inline;
  list-style: none;
}
#colorlib-aside .colorlib-footer h3 {
  font-family: inherit;
  padding: 4px;
}
#colorlib-aside .colorlib-footer h3 a {
  color: #ff722c;
  font-size: 18px;
}
#colorlib-aside .colorlib-footer ul li a {
  color: rgba(255, 255, 255, 0.3);
  padding: 4px;
}
#colorlib-aside .colorlib-footer ul li a:hover,
#colorlib-aside .colorlib-footer ul li a:active,
#colorlib-aside .colorlib-footer ul li a:focus {
  text-decoration: none;
  outline: none;
  color: black;
}

.container-wrap {
  max-width: 1370px;
  margin: 0 auto;
}

#colorlib-main {
  width: calc(100% - 340px);
  float: right;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #colorlib-main {
    width: 100%;
    padding: 0 1em;
  }
}

body.offcanvas {
  overflow-x: hidden;
}
body.offcanvas #colorlib-aside {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  width: 372px;
  background-color: #f9bf3f;
  z-index: 999;
  position: fixed;
}
body.offcanvas #colorlib-main,
body.offcanvas .colorlib-nav-toggle {
  top: 0;
  -moz-transform: translateX(300px);
  -webkit-transform: translateX(300px);
  -ms-transform: translateX(300px);
  -o-transform: translateX(300px);
  transform: translateX(300px);
}

.colorlib-narrow-content {
  padding: 0 4em;
}
@media screen and (max-width: 878px) {
  .colorlib-narrow-content {
    width: 100%;
    padding: 0 1em;
  }
}

.no-gutters {
  margin: 0;
  padding: 0;
}

.colorlib-experience,
.colorlib-skills,
.colorlib-profile,
.colorlib-projects,
.colorlib-education,
.colorlib-blogs,
.colorlib-work,
.colorlib-about,
.colorlib-footer,
.colorlib-contact {
  padding-top: 1em;
  padding-bottom: 0.5em;
  clear: both;
  width: 100%;
  display: block;
}

.profile-cards {
  display: flex;
}

@media screen and (max-width: 768px) {
  .colorlib-experience,
  .colorlib-skills,
  .colorlib-profile,
  .colorlib-projects,
  .colorlib-education,
  .colorlib-work,
  .colorlib-about,
  .colorlib-contact {
    padding-top: 1em;
    padding-bottom: 0.5em;
  }

  .colorlib-blogs {
    display: none;
  }

  .profile-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.author-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.about-img {
  width: 100%;
  height: 600px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.about-desc h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 500;
}

.about-desc h1 {
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 600;
  font-family: "Montserrat", Georgia, serif;
}
.timeline-icon.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 0 0 5px #f2f3f7;
}

.timeline-icon.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.timeline-centered {
  position: relative;
  margin-bottom: 30px;
}

.timeline-centered:before,
.timeline-centered:after {
  content: " ";
  display: table;
}

.timeline-centered:after {
  clear: both;
}

.timeline-centered:before,
.timeline-centered:after {
  content: " ";
  display: table;
}

.timeline-centered:after {
  clear: both;
}

.timeline-centered:before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  background: #f9bf3f;
  top: 20px;
  bottom: 20px;
  margin-left: 29px;
}

.timeline-centered .timeline-entry {
  position: relative;
  margin-top: 5px;
  margin-left: 30px;
  margin-bottom: 10px;
  clear: both;
}

.timeline-centered .timeline-entry .timeline-entry-inner {
  position: relative;
  margin-left: -20px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
  display: block;
  width: 40px;
  height: 40px;
  background: #2c98f0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  -moz-box-shadow: 0 0 0 5px #f2f3f7;
  -webkit-box-shadow: 0 0 0 5px #f2f3f7;
  box-shadow: 0 0 0 5px #f2f3f7;
  line-height: 40px;
  float: left;
}
.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-icon.color-2 {
  background: brown;
  color: white;
}
.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-icon.color-none {
  background: #fff;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
  position: relative;
  background: linear-gradient(135deg, rgb(255, 221, 153), rgb(249, 191, 63));
  color: #000;
  padding: 1.2em;
  margin-left: 60px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border-radius: 5px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 9px 0;
  border-color: transparent #f2f3f7 transparent transparent;
  left: 0;
  top: 10px;
  margin-left: -9px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p + p {
  margin-top: 0px;
  font-size: 12px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
}

.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-label
  .timeline-sublabel {
  font-weight: 600;
  margin: 0px;
  font-size: 12px;
}

.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-label
  .timeline-text {
  margin-bottom: 0px;
  font-size: 12px;
  color: #000;
}

.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-label
  h2
  span {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: alpha(opacity=40);
  filter: alpha(opacity=40);
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .timeline-centered .timeline-entry {
    margin-left: 5px;
  }
  .timeline-centered:before {
    margin-left: 5px;
  }
}

.progress-wrap h3 {
  font-size: 16px;
  font-family: "Quicksand", Arial, sans-serif;
  margin-bottom: 10px;
}

.progress-wrap h3 {
  padding-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .submenu a {
    padding: 0px;
    padding-left: 0px;
  }
}

#message {
  height: 130px;
}

.colorlib-nav-toggle {
  cursor: pointer;
  text-decoration: none;
}
.colorlib-nav-toggle.active i::before,
.colorlib-nav-toggle.active i::after {
  background: #000;
}
.colorlib-nav-toggle.dark.active i::before,
.colorlib-nav-toggle.dark.active i::after {
  background: #000;
}
.colorlib-nav-toggle:hover,
.colorlib-nav-toggle:focus,
.colorlib-nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}
.colorlib-nav-toggle i {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  width: 30px;
  height: 2px;
  background-color: #000;
  font: bold 14px/0.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.colorlib-nav-toggle i::before,
.colorlib-nav-toggle i::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.colorlib-nav-toggle.dark i {
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.colorlib-nav-toggle.dark i::before,
.colorlib-nav-toggle.dark i::after {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.colorlib-nav-toggle i::before {
  top: -7px;
}

.colorlib-nav-toggle i::after {
  bottom: -7px;
}

.colorlib-nav-toggle:hover i::before {
  top: -10px;
}

.colorlib-nav-toggle:hover i::after {
  bottom: -10px;
}

.colorlib-nav-toggle.active i {
  background: transparent;
}

.colorlib-nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.colorlib-nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.colorlib-nav-toggle {
  position: fixed;
  left: -5px;
  top: 0px;
  z-index: 9999;
  cursor: pointer;
  opacity: 1;
  visibility: hidden;
  padding: 20px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .colorlib-nav-toggle {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 480px) {
  .col-xxs-12 {
    float: none;
    width: 100%;
  }
}

.row-pt-md {
  padding-top: 3em;
}

.col-padding {
  padding: 10px !important;
}

.js .animate-box {
  opacity: 0;
}

ul {
  list-style-type: none;
}

.accordion {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  /* background: #f9bf3f; */
  /* border: 1px solid #f9bf3f; */
  color: #000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 5px;
}

.accordion .link {
  cursor: pointer;
  display: block;
  padding: 15px 15px 15px 15px;
  font-weight: 700;
  border-bottom: 1px solid #000;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li:last-child .link {
  border-bottom: 0;
}

.accordion li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
  right: 12px;
  left: auto;
  font-size: 16px;
}

.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.submenu {
  display: none;
  font-size: 14px;
  padding-left: 0px;
}

.submenu li {
  padding: 5px;
}

.submenu li:hover {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  border-radius: 5px;
  color: #fff;
}

.submenu a {
  display: block;
  text-decoration: none;
  color: #d9d9d9;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.subheading {
  margin-bottom: 0px;
}

.subheading p {
  font-size: 12px;
}

.publish-date {
  color: dimgray;
  font-size: 12px;
  margin-bottom: 0px;
  font-weight: 600;
}

span {
  font-family: "Montserrat", sans-serif;
  /* color: black; */
  display: inline-block; /* change the display type           */
  margin: 0 5px;
}

@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }

  #colorlib-main {
    float: left;
    width: 100%;
  }

  .timeline-label {
    margin-left: 0px !important;
  }
  .timeline-icon {
    display: none !important;
  }
}

:root {
  --footer-bg: linear-gradient(135deg, rgb(255, 221, 153), rgb(249, 191, 63));
  --color: #000;
  --color-smooth: #000;
  --input-border: #3a456a;
}

footer {
  font-size: 13px;
  background: var(--footer-bg);
  padding: 2em 4em;
  /* display: flex; */
  align-items: start;
  justify-content: center;
  gap: 1em;
  border-radius: 5px;
  margin-bottom: 40px;
}

footer ul {
  list-style: none;
  padding-left: 0px;
}

.col {
  flex: 1;
  margin: 0 10px;
  display: inline-grid;
}

.col-title {
  color: var(--color);
  font-size: 1.1em;
  font-weight: 600;
  padding: 0.5em 0;
}

.col-list a {
  color: var(--color-smooth);
  text-decoration: none;
  line-height: 1.4;
  font-weight: 400;
  cursor: pointer;
}

.col-list a:hover,
.col-list a:focus {
  text-decoration: underline;
}

@media screen and (max-width: 750px) {
  footer {
    padding: 2em;
    flex-direction: column;
  }
}

.brown-badge {
  background-color: brown;
  border: 1px solid #850101;
  color: #fff;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #000 !important;
}

.repo-card {
  border-radius: 5px;
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 0 48%;
  padding: 10px;
  font-size: 14px;
  background: linear-gradient(135deg, #ffdd99, #f9bf3f);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.repo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.repo-language,
.repo-stars,
.repo-forks {
  font-size: 14px;
  color: #444;
  margin-top: 12px;
}

.repo-link {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  color: black;
}

hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0;
}

strong {
  color: #000;
}

.dark-mode {
  strong {
    color: #f9bf3f;
  }
}

.blog-card {
  display: flex;
  gap: 24px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 16px;
  background: linear-gradient(135deg, rgb(255, 221, 153), rgb(249, 191, 63));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.blog-content {
  padding: 5px;
}

.blog-image {
  max-height: 200px;
  max-width: 300px;
}

.blog-image img {
  width: 100%;
  height: 100%;
}
.blog-link {
  text-decoration: none;
  color: black;
  display: block;
}

.blog-heading {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: black;
  line-height: 1.3em;
}

.publish-date {
  margin: 0 0 5px;
  font-size: 12px;
  color: #555;
}

.blog-description {
  margin: 0 0 12px;
  font-size: 12px;
  color: #000;
}

.categories-div {
  margin-top: 12px;
}

.repo-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.repo-heading {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.repo-description {
  font-size: 12px;
  color: #555;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 12px;
  color: #666;
}

.language-div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.language-dot {
  width: 8px;
  height: 8px;
  background-color: #666;
  border-radius: 50%;
  display: inline-block;
}

.stats-div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.timeline-entry {
  margin-bottom: 20px;
  position: relative;
}

.timeline-label {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.copyright-text {
  text-align: center;
  color: #333;
}

.profile-card {
  text-decoration: none;
  color: black;
  display: block;
  border-radius: 5px;
  padding: 12px;
  font-size: 14px;
  background: linear-gradient(135deg, #ffdd99, #f9bf3f);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile-info {
  flex-grow: 1;
}

.profile-name {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.profile-username {
  margin: 4px 0 0;
  font-size: 12px;
  color: #555;
}

.profile-stats {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.stat-label {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.stat-value {
  font-size: 20px;
  font-weight: bold;
  color: #222;
}

.profile-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 4px;
}

.badge-stack {
  background-color: #f48024;
  border: 1px solid #c66a17;
  color: #fff;
}

.badge-github {
  background-color: #000;
  border: 1px solid #333;
  color: #fff;
}

.badge-leetcode {
  background-color: #ffc01e;
  border: 1px solid #ffb300;
  color: #111;
}

.profile-url {
  font-size: 11px;
  color: #333;
  word-break: break-all;
}

.visitor-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin: 0px;
}

.exp-heading {
  display: flex;
  gap: 10px;
}

.tags-container {
  margin-top: 5px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.adventure-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trek-card {
  background: #fff;
  border-radius: 12px;
  padding: 5px 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trek-card-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.trek-icon {
  font-size: 24px;
  margin-right: 15px;
}

.trek-info {
  flex: 1;
}

.trek-name {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

.trek-meta {
  font-size: 10px;
  color: #666;
}

.trek-height .badge {
  background-color: #f9bf3f;
  color: #000;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
}

.trek-details {
  font-size: 10px;
  color: #000;
  line-height: 1.4;
  margin-left: 0px;
}

.home-link-wrapper {
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 1000;
  }
  
  .home-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
  }
  
  .home-link:hover {
	background: #f9bf3f;
	color: #000;
	transform: translateX(-5px);
  }
  
  @media (max-width: 768px) {
	.home-link {
	  padding: 8px 16px;
	  font-size: 14px;
	}
  }
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tag {
  background-color: #a11;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.tags-group h4 {
  margin-bottom: 5px;
  font-weight: 600;
}
