/* Global Colors */
:root {
  --buttonColor: #55198b;
  --buttonHover: #8c43ce;
  --topButtonHover: #000;
  --titleColor: #000000;
  --textColor: #000000;
  --subTitle: #868e96;
  --cardSubtitle: #666666;
  --talkCardSubTitle: #7f8287;
  --blogCardTitleColor: #262626;
  --textColorDark: #ffffff;
  --toggleCheck: #2196f3;
  --toggleSwitchSliderBG: #ccc;
  --githubRepoCardLanguageColorBG: #0000ff;
  --githubRepoCardColor: rgb(88, 96, 105);
  --githubRepoCardRepoCardStatsColor: rgb(106, 115, 125);
  --githubRepoCardRepoNameColor: rgb(36, 41, 46);
  --githubProfileCardLocationTS: #ffebcd;
  --githubProfileCardBorder: #6c63ff;
  --lightBackground1: #fff;
  --lightBackground2: rgb(255, 255, 255);
  --lightBackground3: #f5f2f4;
  --blogCardContainerColor: #586069;
  --darkBackground: #171c28;
  --lightBoxShadowDark: rgba(0, 0, 0, 0.2);
  --lightBoxShadow: rgba(0, 0, 0, 0.1);
  --lightBoxShadowDarker: rgba(0, 0, 0, 0.3);
  --darkBoxShadow: #d9dbdf;
  --darkBoxShadow2: #ffffff;
  --experienceCardBlurredDivLG: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  --experienceCardBannerLG: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  --progressBarBackground: rgb(243, 239, 239);
  --lightBorder1: rgba(211, 211, 211, 0.397);
  --educationCardBorder: #a9a7f9;
  --achievementCertificateCardHoverDark: rgba(255, 255, 255, 0.2);
  --blogCardHoverSmallColor: rgba(255, 255, 255, 0.8);
  --headerHoverBG: #f4f4f4;
  --contactDetailHoverTS: #b5b5b5;
  --progressBarSpanBG: #aaa5ff;
  --iconBackground: #333;
  --appHeaderBG: #282c34;
  --skillsColor: #645beb;
  --appLink: #09d3ac;
  --faceBook: #3b5998;
  --linkedin: #0e76a8;
  --github: #333;
  --gitlab: #fca326;
  --google: #ea4335;
  --twitter: #1da1f2;
  --medium: #000;
  --stackoverflow: #f48024;
  --instagram: #c13584;
  --kaggle: #20beff;
}

/* Fonts */
@font-face {
  font-family: "Agustina Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Agustina Regular"),
    url("./src/assets/fonts/Agustina.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"),
    url("./src/assets/fonts/Montserrat-Regular.ttf") format("woff");
  font-display: swap;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}
html,
body {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font: 19px / 23px Montserrat, "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Media Query */
@media (max-width: 1380px) {
  html,
  body {
    font-size: 16px;
    line-height: normal;
  }
}

/* App Styles */
.App {
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

.App-logo {
  height: 40vmin;
}

.App-header {
  background-color: var(--appHeaderBG);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(0.625rem + 2vmin);
  color: var(--textColorDark);
}

.App-link {
  color: var(--appLink);
}

.subTitle {
  color: var(--subTitle);
}

/* Main Styles */
.dark-mode {
  background-color: var(--darkBackground);
  color: white;
  transition: "0.1s";
}

.main {
  width: 90%;
  padding: 20px 10px;
  margin: 0px auto;
  margin-top: 4rem;
}

.greet-main {
  width: 90%;
  padding: 20px 10px;
  margin: 0px auto;
  margin-top: 2rem;
}

.greeting-main {
  display: flex;
}

.greeting-main > * {
  flex: 1;
  margin-bottom: 30px;
}

.empty-div {
  margin-bottom: 40px;
}

.button-greeting-div {
  display: flex;
  margin-top: 40px;
}

.download-link-button {
  text-decoration: none;
}

.greeting-text {
  font-size: 70px;
  line-height: 1.1;
  color: var(--textColor);
}

.greeting-text-p {
  font-size: 30px;
  line-height: 40px;
}

.greeting-image-div > img {
  max-width: 100%;
  height: auto;
}

.wave-emoji {
  animation-duration: 1.8s;
  animation-iteration-count: infinite;
  animation-name: wave;
  display: inline-block;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(12deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(9deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Media Query */
@media (max-width: 1380px) {
  .greeting-text {
    font-size: 50px;
  }
  .greeting-text-p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .main {
    margin-top: 1rem;
  }
  .button-greeting-div {
    justify-content: space-around;
  }
  .greeting-text {
    font-size: 30px;
    text-align: center;
  }
  .greeting-text-p {
    font-size: 16px;
    line-height: normal;
    text-align: center;
  }
  .greeting-main {
    display: block;
  }
  .greeting-image-div {
    height: 256px;
  }
}

@media (max-width: 320px) {
  .main {
    width: auto;
  }
}

/* Header Styles */
.headroom-wrapper {
  max-height: 100px;
}

.dark-menu {
  background-color: var(--darkBackground) !important;
  color: var(--textColorDark);
}

.dark-menu li a {
  color: var(--textColorDark) !important;
}

.dark-menu li a:hover {
  background-color: var(--buttonColor) !important;
}

.header {
  background-color: var(--lightBackground1);
  max-width: 100%;
  padding: 15px 20px;
  margin: 0px auto;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.grey-color {
  color: var(--subTitle);
}

.header li a {
  display: block;
  padding: 15px 20px;
  color: var(--textColor);
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: var(--headerHoverBG);
}

.header .logo {
  display: block;
  flex: none;
  float: left;
  font-size: 1.5em;
  text-decoration: none;
  margin-top: 10px;
  line-height: normal;
}

.header .logo-name {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-variant-ligatures: no-common-ligatures;
  -webkit-font-variant-ligatures: no-common-ligatures;
  padding: 0 10px;
}

.menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

.menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.menu-icon .navicon {
  background: var(--iconBackground);
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}

.menu-icon .navicon-dark {
  background: var(--textColorDark);
}

.menu-icon .navicon:before,
.menu-icon .navicon:after {
  background: var(--iconBackground);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.menu-icon .navicon-dark:before,
.menu-icon .navicon-dark:after {
  background: var(--textColorDark) !important;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.menu-icon .navicon:before {
  top: 5px;
}

.menu-icon .navicon:after {
  top: -5px;
}

.menu-btn {
  display: none;
}

.menu-btn:checked ~ .menu {
  max-height: 486px;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: transparent !important;
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu {
    max-height: none;
  }
  .menu-icon {
    display: none;
  }
}
@media (max-width: 960px) and (min-width: 768px) {
  .header {
    font-size: 12px;
  }
}

/* Skills Styles */
.skills-main-div {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.skills-text-div {
  margin-left: 50px;
}

.skills-main-div > * {
  flex: 1;
  margin-bottom: 30px;
}

.skills-image-div > img {
  max-width: 100%;
  height: auto;
}

.skills-heading {
  font-size: 56px;
  font-weight: 400;
}

@media (max-width: 1380px) {
  .skills-heading {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .skills-heading {
    font-size: 30px;
    text-align: center;
  }
  .greeting-text-p {
    font-size: 16px;
    line-height: normal;
  }
  .skills-main-div {
    flex-direction: column;
  }
  .skills-text-div {
    margin-left: 0px;
    margin: 20px;
  }
  .skills-text {
    font-size: 16px;
  }
  .skills-text-subtitle {
    font-size: 16px;
    text-align: center;
  }
  .skills-image-div {
    order: 2;
  }
}

/* Software Skills */
.dev-icons {
  padding-left: 0;
  list-style: none;
  font-size: 3rem;
  margin-bottom: 0px;
  margin-top: 0px;
  text-align: center;
}

.software-skill-inline {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
}

.software-skill-inline > i {
  color: var(--subTitle);
}

.software-skill-inline > i:hover {
  color: var(--skillsColor);
}
.software-skill-inline > p {
  color: var(--subTitle);
  font-size: 10px;
}
.software-skill-inline > i:hover ~ p {
  color: var(--skillsColor);
}

/* Work Experience */
.experience-cards-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.experience-heading {
  font-size: 56px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
}

.experience-container {
  display: flex;
  flex-direction: column;
  width: 90%;
  padding: 20px 10px;
  margin: 0px auto;
  margin-top: 2rem;
}

.experience-container > * {
  flex: 1;
}

@media (max-width: 1380px) {
  .experience-heading {
    font-size: 40px;
  }
  .experience-cards-div {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .experience-heading {
    font-size: 30px;
    text-align: center;
  }
  .experience-cards-div {
    grid-template-columns: 1fr;
  }
}

/* Experience Card */
.experience-card {
  position: relative;
  background-color: var(--lightBackground2);
  box-shadow: var(--lightBoxShadowDark) 0px 10px 30px -15px;
  border-radius: 15px;
  border: 1px solid var(--lightBorder1);
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 350px;
  width: 100%;
}

.experience-card-dark {
  position: relative;
  background-color: var(--darkBackground);
  box-shadow: var(--lightBoxShadowDark) 0px 10px 30px -15px;
  border-radius: 15px;
  border: 1px solid var(--lightBorder1);
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 350px;
  width: 100%;
}

.experience-card:hover {
  box-shadow: var(--lightBoxShadowDark) 0px 20px 40px -10px;
  transform: translateY(-5px);
}

.experience-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background: var(--experienceCardBannerLG);
  border-radius: 15px 15px 0px 0px;
  height: 12rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.experience-blurred_div {
  position: absolute;
  background: var(--experienceCardBlurredDivLG);
  height: 12rem;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 15px 15px 0px 0px;
}

.experience-div-company {
  position: absolute;
  background: transparent;
  height: 10rem;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-text-company {
  text-align: center;
  padding: 1.5rem;
  margin: 0;
  color: var(--lightBackground1);
  font-size: 24px;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
}

.experience-roundedimg {
  position: absolute;
  object-fit: cover;
  left: 50%;
  top: 8rem;
  transform: translateX(-50%);
  width: 7rem;
  height: 7rem;
  box-shadow: 0 0.5rem 1rem var(--lightBoxShadowDarker);
  border-radius: 50%;
  border: 3px solid var(--lightBackground1);
}

.experience-text-role {
  text-align: center;
  color: var(--textColor);
  font-weight: 700;
  font-size: 22px;
  margin: 0px;
  padding-top: 2rem;
  line-height: normal;
}
.dark-mode-text {
  color: var(--textColorDark) !important;
}
.experience-text-date {
  text-align: center;
  color: var(--subTitle);
  font-size: 16px;
  margin: 0px;
  padding-top: 0.5rem;
  font-weight: 500;
}

.experience-text-desc {
  text-align: center;
  padding: 1rem 1.5rem;
}

.experience-text-details {
  padding: 1.5rem;
  margin-top: 1rem;
}

.experience-text-details ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
}

.experience-text-details li {
  margin-bottom: 0.5rem;
  color: var(--cardSubtitle);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1380px) {
  .experience-text-role {
    padding-top: 1.5rem;
    font-size: 20px;
  }
  .experience-text-company {
    font-size: 20px;
  }
  .experience-text-date {
    font-size: 14px;
  }
  .experience-roundedimg {
    width: 6rem;
    height: 6rem;
    top: 7rem;
  }
}

@media (max-width: 768px) {
  .experience-text-role {
    font-size: 18px;
  }
  .experience-text-company {
    font-size: 18px;
  }
  .experience-text-date {
    font-size: 14px;
  }
  .experience-text-desc {
    font-size: 14px;
  }
  .experience-roundedimg {
    width: 5rem;
    height: 5rem;
    top: 6rem;
  }
  .experience-card, .experience-card-dark {
    max-width: 100%;
  }
}

/* Education */
.education-heading {
  font-size: 56px;
  font-weight: 400;
}

.education-section {
  display: flex;
  flex-direction: column;
  width: 90%;
  padding: 20px 0px;
  margin: 0px auto;
  margin-top: 2rem;
}

.education-section > * {
  flex: 1;
  margin-bottom: 30px;
}

.education-card-container {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

@media (max-width: 1380px) {
  .education-card-container {
    padding-top: 0px;
  }
  .education-heading {
    font-size: 40px;
  }
  .education-text-subtitle {
    font-size: 18px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .education-card-container {
    padding-top: 0px;
  }
  .education-heading {
    font-size: 30px;
    text-align: center;
  }
  .education-text-subtitle {
    font-size: 16px;
  }
}

/* Education Card */
.education-card {
  display: flex;
  flex-direction: row;
}

.education-card:hover + .education-card-border {
  border-color: var(--educationCardBorder);
  width: 100%;
  -webkit-transition: width 0.6s ease-in-out;
  -moz-transition: width 0.6s ease-in-out;
  -o-transition: width 0.6s ease-in-out;
  transition: width 0.6s ease-in-out;
}

.education-card-border {
  height: 30px;
  width: 80%;
  border-top: 2px solid var(--lightBorder1);
  margin-bottom: 20px;
  -webkit-transition: width 0.6s ease-in-out;
  -moz-transition: width 0.6s ease-in-out;
  -o-transition: width 0.6s ease-in-out;
  transition: width 0.6s ease-in-out;
}

.education-head {
  display: flex;
  flex-direction: row;
}

.education-text-school {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  height: 27px;
}

.education-roundedimg {
  object-fit: cover;
  margin-right: 2rem;
  width: 6rem;
  height: 6rem;
  box-shadow: 0 0.5rem 1rem var(--lightBoxShadowDarker);
  border-radius: 50%;
}

.education-card-right {
  max-width: 70%;
}

.education-text-subHeader {
  color: var(--textColor);
  font-weight: 700;
  font-size: 19px;
  margin: 0px;
  padding-top: 0.8rem;
  line-height: normal;
}

.education-text-duration {
  color: var(--titleColor);
  font-size: 19px;
  margin: 0px;
  padding-top: 0.5rem;
}

.education-text-desc {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.education-text-bullets > ul {
  margin-top: 0.5rem;
}

@media (max-width: 1380px) {
  .education-card {
    flex-direction: column;
    padding-bottom: 10px;
  }
  .education-card-right {
    max-width: 90%;
  }
  .education-card-border {
    width: 90%;
  }
  .education-text-subHeader {
    padding-top: 0.5rem;
    font-size: 16px;
  }
  .education-text-school {
    font-size: 20px;
    height: 23px;
  }
  .education-text-duration {
    font-size: 16px;
  }
  .education-roundedimg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.5rem;
    margin-right: 0px;
  }
}

@media (max-width: 768px) {
  .education-card {
    text-align: center;
  }
  .education-card-right {
    max-width: 100%;
  }
  .education-card-border {
    width: 100%;
  }
  .education-roundedimg {
    margin-top: 10px;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .education-text-bullets > ul {
    max-width: 80%;
    margin: auto;
  }
}

/* Achievement */
.achievement-heading {
  font-size: 56px;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
}
.achievement-subtitle {
  text-transform: uppercase;
  margin: 0px;
  margin-bottom: 50px;
}

@media (max-width: 1380px) {
  .achievement-heading {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .achievement-heading {
    font-size: 30px;
    text-align: center;
  }
  .achievement-subtitle {
    font-size: 16px;
    line-height: normal;
    text-align: center;
  }
}

/* Achievement Card */
.card-image {
  max-width: 100%;
  height: auto;
  width: 250px;
}
.card-title {
  color: var(--titleColor);
  font-size: 1.375rem;
  line-height: 24px;
  font-weight: 700;
  margin: 15px 0 0 0;
}
.card-subtitle {
  color: var(--cardSubtitle);
  font-size: 1.063rem;
  line-height: 1.5rem;
}
.certificate-card {
  background-color: var(--lightBackground2);
  box-shadow: var(--lightBoxShadowDark) 0px 10px 30px -15px;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--lightBorder1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.certificate-detail-div {
  text-align: center;
}
.certificate-card:hover {
  box-shadow: var(--lightBoxShadowDark) 0px 20px 30px -10px;
}
.dark-mode.certificate-card:hover {
  box-shadow: var(--achievementCertificateCardHoverDark) 0px 20px 30px -10px;
}
.certificate-image-div {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.achievement-cards-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem 1rem;
}
.certificate-card-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.certificate-card-footer span.certificate-tag {
  background: var(--buttonColor);
  color: var(--lightBackground3);
  vertical-align: middle;
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 0.75rem;
  height: 2em;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.5;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0 0.75em;
  cursor: pointer;
  transition: 0.2s ease-in;
}
span.certificate-tag:hover {
  background: var(--buttonHover);
}

/* Button */
.main-button {
  background-color: var(--buttonColor);
  border: solid 1px var(--buttonColor);
  color: var(--textColorDark);
  font-weight: 700;
  width: max-content;
  padding: 13px 22px;
  margin-right: 50px;
  text-transform: uppercase;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out 0s;
}
.main-button:hover {
  background-color: var(--darkBoxShadow2);
  color: var(--buttonColor);
  transition: all 0.3s ease 0s;
  transform: translateY(-3px);
}
.project-button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.project-button > .main-button {
  margin-right: 0 !important;
}

@media (max-width: 768px) {
  .main-button {
    font-size: 0.938rem;
    padding: 12px 18px;
    margin-right: 0px;
  }
}
@media (max-width: 320px) {
  .main-button {
    font-size: 0.75rem;
  }
}

/* Social Media */
.social-media-div {
  font-size: 2em;
}

.icon-button {
  margin-bottom: 10px;
}

.icon-button i {
  color: var(--textColorDark);
  border-radius: 2.6rem;
  cursor: pointer;
  display: inline-block;
  font-size: 1.3rem;
  height: 2.6rem;
  line-height: 2.6rem;
  margin: 0 5px;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 2.6rem;
  margin-bottom: 10px;
  transition: 0.2s ease-in;
}

.facebook i {
  background-color: var(--faceBook);
}

.linkedin i {
  background-color: var(--linkedin);
}

.github i {
  background-color: var(--github);
}

.gitlab i {
  background-color: var(--gitlab);
}

.google i {
  background-color: var(--google);
}

.twitter i {
  background-color: var(--twitter);
}

.medium i {
  background-color: var(--medium);
}

.stack-overflow i {
  background-color: var(--stackoverflow);
}

.kaggle i {
  background-color: var(--kaggle);
}

.instagram i {
  background-color: var(--instagram);
}

.twitter i:hover,
.google i:hover,
.gitlab i:hover,
.github i:hover,
.linkedin i:hover,
.facebook i:hover,
.instagram i:hover,
.stack-overflow i:hover,
.kaggle i:hover,
.medium i:hover {
  background-color: var(--textColor);
}

@media (max-width: 768px) {
  .social-media-div {
    text-align: center;
  }
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--toggleSwitchSliderBG);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--toggleCheck);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--toggleCheck);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.slider .emoji {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  transition: 0.4s;
}

.slider .emoji:nth-child(1) {
  left: 4px;
}

.slider .emoji:nth-child(2) {
  right: 4px;
  opacity: 0;
}

input:checked + .slider .emoji:nth-child(1) {
  opacity: 0;
}

input:checked + .slider .emoji:nth-child(2) {
  opacity: 1;
}

/* Contact */
.contact-div-main {
  display: flex;
}

.dark-mode a {
  color: var(--textColorDark);
}

.contact-div-main > * {
  flex: 1;
}

.contact-title {
  font-size: 65px;
  font-weight: 400;
}

.contact-detail,
.contact-detail-email {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 400;
  color: var(--subTitle);
  text-decoration: none;
}

.contact-detail:hover,
.contact-detail-email:hover {
  color: var(--textColor);
  text-shadow: 2px 1px 2px var(--contactDetailHoverTS);
  transition: all 0.3s;
}

.contact-subtitle {
  text-transform: uppercase;
}

.contact-text-div {
  margin-top: 1.5rem;
}

.contact-margin-top {
  margin-top: 4rem;
}

.contact-image-div > img {
  max-width: 100%;
  height: auto;
  margin-left: 1.5rem;
  margin-top: -4rem;
}

@media (max-width: 1380px), (max-width: 768px) {
  .contact-title {
    font-size: 56px;
    font-weight: 400;
    text-align: center;
  }

  .contact-title {
    font-size: 40px;
    text-align: center;
  }

  .contact-subtitle {
    font-size: 16px;
    line-height: normal;
    text-align: center;
  }

  .contact-text-div {
    text-align: center;
    margin-top: 1.5rem;
  }

  .contact-detail,
  .contact-detail-email {
    font-size: 20px;
  }

  .contact-image-div {
    display: none;
  }
}

/* Footer */
.footer-text {
  text-align: center;
  color: var(--subTitle);
}

.dark-mode {
  color: var(--textColorDark) !important;
}

.footer-div {
  margin-top: 2rem;
  padding-bottom: 1rem;
}

/* Skill Progress */
.meter {
  height: 20px;
  position: relative;
  background: var(--progressBarBackground);
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
}
.meter > span {
  display: block;
  height: 100%;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: var(--progressBarSpanBG);
  position: relative;
  overflow: hidden;
}
.skill {
  line-height: 3.5vw;
}
.skill-bars {
  font-size: 28px;
  width: 40%;
}
.skills-container {
  display: flex;
  width: 90%;
  padding: 20px 10px;
  margin: 0px auto;
  margin-top: 2rem;
}
.skills-container > * {
  flex: 1;
  margin-bottom: 30px;
}
.skills-image > img {
  margin-left: 80px;
  max-width: 90%;
  height: auto;
}

@media (max-width: 1456px) {
  .skills-bar {
    line-height: 4rem;
  }
  .skills-image {
    display: none;
    order: 2;
  }
}

@media (max-width: 768px) {
  .skills-container {
    flex-direction: column;
  }
  .skills-bar {
    line-height: 3rem;
    margin: 20px;
  }
  .skills-image {
    display: none;
    order: 2;
  }
}

/* Projects */
.project-title {
  font-size: 52px;
  font-weight: 400;
  line-height: normal;
}

.startup-project-text img {
  max-width: 100%;
  height: auto;
}

.repo-cards-div-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem 1rem;
}

@media (max-width: 1380px) {
  .project-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .project-title {
    font-size: 30px;
    text-align: center;
  }
  .repo-cards-div-main {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Blogs */
.blog-header-text {
  font-size: 56px;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
}

.blog-subtitle {
  text-transform: uppercase;
  margin: 0px;
  margin-bottom: 50px;
}

.blog-main-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem 1rem;
}

.blog-text-div {
  margin-top: 20px;
}

.blog-card {
  background-color: var(--lightBackground2);
  box-shadow: var(--lightBoxShadowDark) 0px 10px 30px -15px;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--lightBorder1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: var(--lightBoxShadowDark) 0px 20px 30px -10px;
}

.blog-card-title {
  color: var(--blogCardTitleColor);
  font-size: 1.375rem;
  line-height: 24px;
  font-weight: 700;
  margin: 15px 0 0 0;
}

.blog-card-subtitle {
  color: var(--cardSubtitle);
  font-size: 1.063rem;
  line-height: 1.5rem;
}

.blog-card-image {
  max-width: 100%;
  height: auto;
  width: 250px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.blog-card-footer span.blog-tag {
  background: var(--buttonColor);
  color: var(--lightBackground3);
  vertical-align: middle;
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 0.75rem;
  height: 2em;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.5;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0 0.75em;
  cursor: pointer;
  transition: 0.2s ease-in;
}
span.blog-tag:hover {
  background: var(--buttonHover);
}

/* About Us and Our Approach */
.about-section {
  display: flex;
  flex-direction: column;
  width: 90%;
  padding: 20px 0px;
  margin: 0px auto;
  margin-top: 2rem;
}

.about-heading {
  font-size: 56px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-item {
  background-color: var(--lightBackground2);
  box-shadow: var(--lightBoxShadowDark) 0px 10px 30px -15px;
  border-radius: 10px;
  border: 1px solid var(--lightBorder1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.about-item:hover {
  box-shadow: var(--lightBoxShadowDark) 0px 20px 30px -10px;
}

.about-image {
  margin-bottom: 1rem;
}

.about-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0.5rem 1rem var(--lightBoxShadowDarker);
}

.about-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--titleColor);
}

.about-subtitle {
  color: var(--textColor);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 1rem 0;
}

.about-desc {
  color: var(--cardSubtitle);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.about-content li {
  margin-bottom: 0.5rem;
  color: var(--cardSubtitle);
  font-size: 14px;
}

@media (max-width: 1380px) {
  .about-heading {
    font-size: 40px;
  }
  .about-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-heading {
    font-size: 30px;
  }
  .about-item {
    padding: 1.5rem;
  }
  .about-content h3 {
    font-size: 24px;
  }
  .about-subtitle {
    font-size: 16px;
  }
  .about-desc {
    font-size: 14px;
  }
}
