@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.img-fluid {
  width: 100%;
}

.darktext {
  color: #777779;
}

img {
  user-select: none;
  pointer-events: none;
}

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

body {
  font-family: "Poppins", sans-serif;
  /* overflow-x: hidden; */
}

body, html {
  cursor: auto;
}

a, button, .social-links, .resume-download-btn, input, textarea, select {
  cursor: pointer;
}

.flex {
  display: flex;
}

.aic {
  align-items: center;
}

.jcc {
  justify-content: center;
}

.jcs {
  justify-content: flex-start;
}

.fdc {
  flex-direction: column;
}

.m-auto {
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 21px;
  font-weight: 600;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/* Initial state of the navbar */
#navbar {
  transition: background-color 0.3s;
}

/* Background color when scrolling */
#navbar.scrolled {
  background-color: #14121c; /* Example color, adjust as needed */
  width: 100%;
}

@media (max-width: 768px) {
  header {
    background-color: #14121c;
  }
}

header.has-bg {
  box-shadow: 0 0 20px black;
  background-color: #0a0a23;
}

nav {
  justify-content: space-between;
  padding-block: 30px;
  color: inherit;
}

nav ul,
nav ol {
  list-style-type: none;
}

nav a {
  color: inherit;
  font-size: 1.25rem;
}

.has-bg nav {
  padding-block: 15px;
}

.container {
  max-width: calc(1024px + 50px);
  padding-inline: 25px;
  margin-inline: auto;
}

.col-6 {
  width: 60%;
}

@media (max-width: 768px) {
  .col-6 {
    width: 100%;
  }
}

.col-4 {
  width: 40%;
}

@media (max-width: 768px) {
  .col-4 {
    width: 100%;
  }
}

.shape {
  background-color: #242329;
  border-radius: 3px;
  position: absolute;
  z-index: -1;
}

.shape--small {
  width: 50px;
  height: 50px;
  transform: rotate(5deg);
}

.shape--x-small {
  width: 20px;
  height: 20px;
  transform: rotate(-5deg);
}

.shape--top-right {
  top: -10px;
  right: 300px;
}

@media (max-width: 768px) {
  .shape--top-right {
    top: 200px;
    right: auto;
    left: 20px;
  }
}

.shape--top-center {
  top: 50px;
  right: 30%;
}

@media (max-width: 768px) {
  .shape--top-center {
    top: 100px;
    right: 10%;
  }
}

.shape--center {
  top: 140px;
  left: 50%;
}

@media (max-width: 768px) {
  .shape--center {
    top: 380px;
    right: 20%;
    left: auto;
  }
}

.shape--top-main {
  height: 364px;
  width: 474px;
  left: -76px;
  top: 20px;
  border-radius: 130px;
  transform: rotate(-41deg);
}

@media (max-width: 768px) {
  .shape--top-main {
    display: none;
  }
}

.shape--bottom-main {
  top: -100px;
  right: 100px;
  height: 200px;
  width: 200px;
  background-color: #242329;
  border-radius: 20px;
  z-index: 2;
  rotate: 2deg;
}

@media (max-width: 768px) {
  .shape--bottom-main {
    width: 75px;
    height: 75px;
    top: 0;
    right: 20px;
  }
}

.shape--center-right {
  top: 60%;
  left: 20%;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 24px;
}

.social-icons a:hover svg path {
  stroke: #8739fa;
}

header .social-icons {
  margin-top: 0;
}

.post-tag a {
  color: #8739fa;
  text-decoration: none;
}

.portfolio {
  margin-top: 50px;
}

.portfolio__logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.portfolio__logos a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.text-left {
  text-align: left;
}

html {
  scroll-behavior: smooth;
}

.has-bg {
  background-color: #14121c;
  color: #fff;
}

.homepage h1 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.5;
}

.homepage h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.homepage p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  max-width: 500px;
  margin-inline: auto;
}

.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.hero .container.main-hero {
  padding-block: 200px;
  min-height: 80vh;
}

@media (min-width: 1920px) {
  .hero .container.main-hero {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero .container.main-hero {
    height: auto;
    padding-block: 200px 100px;
  }
}

.hero h3 {
  margin-bottom: 20px;
}

.hero__img {
  width: 100px;
  height: 100px;
  margin-inline: auto;
  border: 3px solid #8739fa;
  border-radius: 50%;
  padding: 5px;
  margin-bottom: 40px;
}

.hero__img img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  height: 100%;
  border-radius: 50%;
}

.blog-cards {
  margin-top: 150px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
}

.blog-cards__card {
  width: 100%;
  display: flex;
  gap: 20px;
}

@media (max-width: 1024px) {
  .blog-cards__card {
    flex-direction: column;
  }
}

.blog-cards__img {
  height: 160px;
  width: 100%;
  max-width: 250px;
  background-color: #f6f6f6;
  border-radius: 5px;
  overflow: hidden;
  font-size: 0;
}

@media (max-width: 1024px) {
  .blog-cards__img {
    max-width: 100%;
    height: auto;
  }
}

.blog-cards__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-cards__content {
  width: calc(100% - 270px);
}

@media (max-width: 1024px) {
  .blog-cards__content {
    width: 100%;
  }
}

.blog-cards__content h2 {
  font-weight: 400;
}

@media (max-width: 768px) {
  .blog-cards__content h2 {
    font-size: 18px;
  }
}

.blog-cards__content h2 a {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) {
  .blog-cards__content h2 a:hover {
    text-decoration: underline;
  }
}

.blog-archive {
  margin-block: 150px 200px;
  font-family: "Lato", sans-serif;
}

@media (max-width: 1024px) {
  .blog-archive {
    margin-block: 150px;
  }
}

.blog-archive img {
  width: 100%;
  border-radius: 20px;
  margin-block: 30px;
}

.blog-archive * {
  font-family: inherit;
}

.blog-archive time + * {
  margin-top: 0 !important;
}

.blog-archive h1,
.blog-archive h2,
.blog-archive h3,
.blog-archive h4,
.blog-archive h5,
.blog-archive h6 {
  margin-top: 20px;
  line-height: 1.2;
}

.blog-archive h1 {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.blog-archive h2 {
  font-size: 2rem;
  font-weight: 600;
}

.blog-archive h3 {
  font-size: 1.75rem;
  font-weight: 500;
}

.blog-archive h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

.blog-archive h5 {
  font-size: 1.125rem;
  font-weight: 500;
}

.blog-archive h6 {
  font-size: 1rem;
  font-weight: 200;
}

.blog-archive p {
  font-size: 1.375rem;
  margin-top: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  color: #0a0a23;
}

.blog-archive a {
  color: inherit;
  text-transform: capitalize;
}

.blog-archive p + p {
  margin-top: 2.0625rem;
}

.blog-archive p + h2,
.blog-archive p + h3,
.blog-archive ol + h2,
.blog-archive ul + h2,
.blog-archive blockquote + h2 {
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .blog-archive .container:not(.blog-hero) {
    padding-right: 300px;
  }
}

.blog-archive blockquote {
  padding-left: 30px;
  position: relative;
  margin-block: 40px;
}

.blog-archive blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 10px;
  background-color: #8739fa;
}

.blog-archive ol,
.blog-archive ul {
  list-style-position: outside;
  padding-left: 30px;
}

.blog-archive li {
  font-size: 20px;
  margin-top: 1.25rem;
  line-height: 35.2px;
  font-weight: 400;
  color: #0a0a23;
}

.blog-archive code {
  background-color: #d8d5d5;
  padding: 5px;
  border-radius: 5px;
}

.blog-archive iframe {
  margin-block: 20px;
}

@media (max-width: 1024px) {
  .blog-archive h1 {
    font-size: 32px;
  }
  .blog-archive h2 {
    font-size: 24px;
  }
  .blog-archive h3 {
    font-size: 18px;
  }
  .blog-archive h4 {
    font-size: 16px;
  }
  .blog-archive h5 {
    font-size: 14px;
  }
  .blog-archive h6 {
    font-size: 12px;
  }
  .blog-archive p {
    font-size: 16px;
  }
  .blog-archive p + h2,
  .blog-archive p + h3,
  .blog-archive ol + h2,
  .blog-archive ul + h2,
  .blog-archive blockquote + h2 {
    margin-top: 40px;
  }
  .blog-archive li {
    font-size: 18px;
  }
}

footer {
  text-align: center;
  width: 100%;
  padding-block: 20px;
}

footer a {
  color: #8739fa;
  text-decoration: none;
}

.about-us {
  width: 100%;
  background-color: #14121c;
  min-height: 100vh;
  height: auto;
  display: flex;
  font-size: 20px;
  position: relative;
  margin-bottom: 100px;
}

@media (min-width: 1920px) {
  .about-us {
    min-height: auto;
  }
}

.about-us h2 {
  font-size: 100px;
  color: #221d36;
}

@media (max-width: 768px) {
  .about-us {
    height: auto;
    padding-block: 100px;
    margin-bottom: 0;
  }
  .about-us pre {
    font-size: 9px;
  }
  .about-us h2 {
    font-size: 38px;
  }
}

.about-us .scope {
  color: red;
}

.scope {
  color: #24e394;
}

.about-us .method {
  color: #5918df;
}

.about-us .propname {
  color: #eeff31;
}

.about-us .string {
  color: #24e33a;
}

.about-us .string a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.about-us .dot {
  color: #3b3553;
}

.about-us .vname {
  color: #24e394;
}


.about-us .comment {
  color: #78707e;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .about-us .comment {
    font-size: 9px;
  }
}
  
@media (max-width: 500px) {
  .about-us .for-desktop {
    display: none;
  }
}

@media (min-width: 500px) {
  .about-us .for-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-us .container {
    padding-inline: 10px;
  }
}

/*# sourceMappingURL=style.css.map */

/*# sourceMappingURL=style.css.map */

.social-links {
  transition: all 0.3s ease-in-out;
}

.social-links:hover {
  transform: translateY(-5px);
}

.shopify-link::after {
  content: " - Shopify";
  color: #78707e;
  font-size: 12px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  margin-right: 5px;
}

.small-text {
  font-size: 12px;
  color: #78707e;
}

.custom-tooltip {
  position: absolute;
  z-index: 9999;
  background: linear-gradient(135deg, #24e3fa 0%, #8739fa 100%);
  color: #fff;
  padding: 0.6em 1.2em;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  font-size: 1em;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.25s cubic-bezier(.4,2,.6,1), transform 0.35s cubic-bezier(.4,2,.6,1);
  white-space: nowrap;
  will-change: opacity, transform;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 0.5em;
}
.custom-tooltip.active {
  opacity: 1;
  transform: translateY(-16px) scale(1.03);
}
.custom-tooltip .tooltip-label {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.32s cubic-bezier(.4,2,.6,1) 0.12s, transform 0.38s cubic-bezier(.4,2,.6,1) 0.12s;
  will-change: opacity, transform;
}
.custom-tooltip.active .tooltip-label {
  opacity: 1;
  transform: translateX(0);
}
.custom-tooltip .tooltip-tech {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.32s cubic-bezier(.4,2,.6,1) 0.32s, transform 0.38s cubic-bezier(.4,2,.6,1) 0.32s;
  will-change: opacity, transform;
}
.custom-tooltip.active .tooltip-tech {
  opacity: 1;
  transform: translateX(0);
}
.custom-tooltip .tooltip-label:empty {
  display: none;
}
.custom-tooltip .tooltip-label:empty + .tooltip-tech {
  margin-left: 0;
}
.custom-tooltip:has(.tooltip-label:empty) {
  gap: 0;
}

@media (max-width: 768px) {
  body, html,
  a, button, .social-links, .resume-download-btn, input, textarea, select {
    cursor: auto;
  }
}

.highlight-since {
  background: linear-gradient(90deg, #7fcd095f 0%, #a60cd952 100%);
  border-radius: 4px;
  transition: background 0.2s;
}

@media screen and (max-width: 768px) {
  .darktext {
    font-size: 17px !important;
  }

  .banner-main {
    font-size: 30px !important;
  }
}