body {
  scrollbar-width: none;
}
.contactSection {
  height: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  

  align-items: center;
}


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

.buttons {
  margin-top: 50px;
  text-align: center;
  border-radius: 30px;
}

.blob-btn {
  z-index: 1;
  position: relative;
  padding: 20px 46px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  font-size: 16px;
  font-weight: bold;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 30px;
}
.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #0505A9;
  border-radius: 30px;
}
.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}
.blob-btn:hover {
  transform: translateZ(0) scale(1.2);
  transition: transform 0.2s;
  color: #FFFFFF;
  border-radius: 30px;
}
@supports (filter: url("#goo")) {
  .blob-btn:hover {
    transform: translateZ(0) scale(1.1);
  }
}
.blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 30px;
}
.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
}
.blob-btn__blobs {
  position: relative;
  display: inline-block;
  height: 100%;
  filter: url("#goo");
}
.blob-btn__blob {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
}
.blob-btn__blobs {
  position: relative;
  display: inline-block;
  height: 100%;
  filter: url("#goo");
}
.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: black;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}
@supports (filter: url("#goo")) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}
.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}
.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}
.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}
.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}
.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}
@supports (filter: url("#goo")) {
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
}/*# sourceMappingURL=styles.css.map */

.nav-item{
  font-weight: bold;
}

.project-card {
  position: relative;
  display: block;
  width: 40rem;
  height: 25rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.0),
    rgba(0, 0, 0, 0.0)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
}



.project-card__content span {
  /* background-color: rgba(43, 49, 51, 0.9); */
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 4px;
}
.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* 👇 transition must be here */
  transition: transform 0.4s ease;
}

.project-card:hover .project-card__img {
  transform: scale(1.05);
}


/* Index sidebar */
/* Toggle button */
.index-toggle-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 64px;
  border: none;
  background-color: black; /* Bootstrap primary */
    border: 2px solid #ffffff; /* ← change color here */
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1050;
  border-radius: 8px 0 0 8px;
  transition: right 0.3s ease;
}

/* Index panel */
.page-index {
  position: fixed;
  top: 50%;
  right: -260px;          /* hidden */
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background-color: black;
  border: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1040;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}

/* OPEN STATE */
.page-index.open {
  right: 0;
}

.page-index.open + .index-toggle-btn,
.index-toggle-btn.open {
  right: 260px; /* panel width */
}

/* Links */
.page-index a {
  display: block;
  text-decoration: none;
}


.index-link {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 6px;

  background-color: black;
  color: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 6px;

  text-decoration: none;

  transition: background-color 0.2s ease,
              transform 0.05s ease;
}

.index-link:hover,
.index-link:active,
.index-link:focus,
.index-link:focus-visible {
  text-decoration: none;
}

.index-link:active {
  transform: scale(0.98);
  text-decoration: none;

}

