* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  scrollbar-color: #111 #050505;
}

:root {
  --primary-clr: #1E242C;
  --secondary-clr: #576579;
  --theme-clr: #6e56cf;
  --black-clr: #000;
  --white-clr: #fff;
  --bg-clr: #f2f7fd;
  --bg-lgt-clr: #F8F8F8;
  --card-bg: #F9F1FD;
  --green-clr: #00D25B;
  --red-clr: #FF0505;
  --pink-clr: #FD65C0;
  --yellow-clr: #FFCC40;
  --purple-clr: #783EFD;
  --blue-clr: #1A73E8;
  --lgt-navy-clr: #6071CB;
  --dark-orange: #F65755;
  --text-clr: #9ba1a6;
  --sidemenu-txt-clr: #aaaeb9;
  --inter-font: "Inter", sans-serif;
  --jbm-font: "JetBrains Mono", monospace;
  --spacer: 30px;
}

.dark-theme {
  background: var(--black-clr);
  scrollbar-color: #111 #050505;
}

.dark-theme,
.light-theme {
  min-height: 100vh;
}

.light-theme {
  background: var(--white-clr);
}

.dark-theme .theme-toggle:hover {
  background: #2c2250;
}


::selection {
  background-color: var(--primary-clr);
  color: var(--white-clr);
}

/* Scrollbar css start */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #aaaeb9;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-clr);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-clr);
}

/* Scrollbar css end */


.bg-yellow {
  background: var(--yellow-clr) !important;
}

.bg-primary {
  background: var(--primary-clr) !important;
}

.bg-purple {
  background: var(--purple-clr) !important;
}

.bg-lgt-navy {
  background: var(--lgt-navy-clr) !important;
}

.bg-orange {
  background: var(--dark-orange) !important;
}

.bg-yellow {
  background: var(--yellow-clr) !important;
}

.bg-pink {
  background: var(--pink-clr) !important;
}

a {
  text-decoration: none;
}

.spacer {
  padding: var(--spacer) 0px;
}

.spacer-b {
  padding-bottom: 100px;
}

.p-relative {
  position: relative;
}

.primary-btn {
  background: var(--blue-clr);
  color: var(--white-clr);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--hel-font);
  padding: 8px 16px;
  border: 0px;
  min-width: 110px;
  text-align: center;
  margin: 0px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.primary-btn svg path {
  transition: all 0.3s ease-in-out;
}

.primary-btn:hover {
  background: var(--primary-clr) !important;
  color: var(--white-clr) !important;
}

.primary-btn:hover svg path {
  fill: var(--primary-clr);
}

input:focus,
textarea:focus {
  box-shadow: none !important;
}

img {
  max-width: 100%;
}

.primary-text-clr {
  color: var(--primary-clr) !important;
}

.theme-txt-clr {
  color: var(--theme-clr) !important;
}

.my-30 {
  margin: var(--spacer) 0px;
}

.mt-30 {
  margin-top: var(--spacer);
}

.mb-30 {
  margin-bottom: var(--spacer);
}



header {
  margin: 32px 0px 56px;
}

.header-flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

button.theme-clr-toggle {
  width: 24px;
  height: 24px;
  border-radius: 30px;
  border: 0px;
  background: var(--theme-clr);
  position: absolute;
  content: "";
  left: 0;
}

.nav-wrapper ul {
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.nav-wrapper ul li {
  list-style: none;
}

button.navlink {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--text-clr);
  line-height: 24px;
  background: transparent;
  border: 0px;
}

button.navlink.active {
  font-weight: 600;
  color: var(--theme-clr) !important;
}

button.navlink:hover {
  background: #202425;
  color: var(--theme-clr) !important;
}


button.theme-toggle {
  width: 28px;
  height: 28px;
  border: 0px;
  background: transparent;
  padding: 4px;
  border-radius: 6px;
}

button.theme-toggle:hover {
  background: rgb(237, 233, 254);
}

.dark-theme .theme-toggle:hover {
  background: #2c2250;
}

button.theme-toggle span {
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}

span.dark\:hidden {
  display: none;
}

span.dark\:block {
  display: flex;
}

button.theme-toggle span.dark\:block svg :is(path, circle),
button.theme-toggle:hover span.dark\:block svg :is(path, circle) {
  stroke: var(--theme-clr);
}

button.theme-toggle span.dark\:hidden svg :is(path, circle),
button.theme-toggle:hover span.dark\:hidden svg :is(path, circle) {
  stroke: var(--theme-clr);
}


.sm-screen-fixed-bar {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: #000000c7;
  backdrop-filter: blur(7px);
  border-radius: 50px;
  z-index: 2;
}

.loc-time-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

a.location-link,
.current-time {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--text-clr);
  margin-bottom: 0px;
}

button.menubtn {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--inter-font);
  color: var(--text-clr);
  background: transparent;
  border: 0px;
}


.hero-wrapper {
  max-width: 800px;
}

h1,
h1 span {
  font-size: 70px;
  font-weight: 800;
  font-family: var(--inter-font);
  color: var(--white-clr);
  line-height: 72px;
  max-width: 50rem;
  margin-bottom: 16px;
}

.profile-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}

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

.text-wrapper p,
.text-wrapper p span {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--jbm-font);
  color: var(--white-clr);
  margin-bottom: 0px;
  line-height: 24px;
}

span.decoration-dotted {
  text-decoration-color: #fff;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
}

.social-media-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.social-media-wrapper {
  margin-top: 80px;
}

a.social-theme-btn {
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: var(--theme-clr) !important;
}

a.social-theme-btn:hover {
  background: #2c2250;
}

.w-sm-max {
  max-width: 650px;
}

.common-pages :is(h1, h2) {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
}

.projects-card-wrapper {
  position: relative;
  height: 100%;
  z-index: 1;
  border-radius: 4px;
}

.project-card-img {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  z-index: -1;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.project-info {
  width: 100%;
  height: 100%;
  background: rgb(17 24 39 / 95%);
  padding: 40px;
  border: 4px solid rgb(31 41 55 / 95%);
  border-radius: 4px;
  opacity: 0;
  min-height: 272px;
}

.projects-card-link:hover .project-info {
  opacity: 1;
  cursor: pointer;
}

.project-info h2 {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: #4ade80;
  text-align: center;
  letter-spacing: 1.4px;
  margin-bottom: 4px;
}

.project-info h3 {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--white-clr);
  text-align: center;
  margin-bottom: 12px;
}

.project-info p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: rgb(156 163 175);
  line-height: 26px;
  text-align: center;
  margin-bottom: 0px;
}

.experience-card-wrapper {
  padding: 32px;
  background: rgb(31 41 55 / 50%);
  border-radius: 4px;
  height: 100%;
  min-height: 316px;
}

.experience-card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.experience-card-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.experience-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.experience-titles {
  width: calc(100% - 64px);
}

.experience-titles h2 {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--white-clr);
  margin-bottom: 4px;
  text-align: center;
}

.experience-titles h3 {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: rgb(107 114 128);
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
}

.experience-content {
  margin: 24px 0px;
}

.experience-content p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--white-clr);
  text-align: center;
  margin-bottom: 0px;
  line-height: 26px;
}

.blog-card-wrapper {
  padding: 50px 20px;
  background: rgb(209 213 219 / 40%);
  border-radius: 4px;
}

.blog-card-wrapper p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--white-clr);
  text-align: center;
  margin-bottom: 0px;
  line-height: 26px;
}

.common-container {
  padding-top: 40px;
}

/* Media css start */

@media screen and (min-width: 1800px) {
  .container {
    max-width: calc(100% - 256px);
  }
}

@media screen and (min-width: 1200px) and (max-width: 1880px) {
  .container {
    max-width: calc(100% - 256px);
  }
}

@media screen and (max-width: 1400px) {
  .common-container .container {
    max-width: calc(100% - 156px);
  }
}

@media screen and (max-width: 1300px) {
  .container {
    max-width: calc(100% - 256px);
  }
}

@media screen and (max-width: 992px) {
  .common-container .container {
    max-width: calc(100% - 56px);
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: calc(100% - 56px);
  }

  .nav-wrapper {
    display: none;
  }

  .nav-wrapper.show {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    background: #000000a3;
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
    height: 100%;
    z-index: 3;
  }

  .nav-wrapper ul {
    flex-direction: column;
    align-items: flex-start;
    background: var(--black-clr);
    width: 100%;
    padding: 40px 0px 10px;
    gap: 20px;
  }

  .nav-wrapper ul li a.navlink {
    font-size: 24px;
    color: var(--white-clr);
  }
}

@media screen and (max-width: 576px) {
  .container {
    max-width: calc(100% - 28px);
  }

  .common-container .container {
    max-width: calc(100% - 28px);
  }

  h1,
  h1 span {
    font-size: 48px;
    line-height: 48px;
  }

  .common-pages :is(h1, h2) {
    font-size: 30px;
    line-height: 30px;
  }

}