/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop
$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

Inside media queries 1em is always 16px i.e 1em = 16px at every screen size only inside media queries

WHY DOES NESTING CSS CLASSES WORK HERE??????

*/

* {
  --n-blue: 0, 98, 185;
  --blue: rgba(0, 98, 185, 0.8);
  --red: red;
  --purple: rgba(143, 162, 255, 0.8);
  --green: rgba(31, 79, 45, 0.8);
  --light-green: rgba(101, 146, 74, 0.8);
  --brown: rgba(129, 104, 8, 0.8);
  --light-brown: rgba(186, 155, 65, 0.8);
  --n-pink: 255, 71, 133;
  --pink: rgba(255, 71, 133, 0.8);
  --main-color: var(--n-pink);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-family: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 75em) {
  html {
    font-size: 59%;
  }
}

@media only screen and (max-width: 56.25em) {
  html {
    font-size: 56%;
  }
}

@media only screen and (min-width: 112.5em) {
  html {
    font-size: 65%;
  }
}

body {
  box-sizing: border-box;
  position: relative;
  line-height: 1.5;
  font-family: sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Source Sans Pro", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

input:focus,
button:focus,
a:focus,
textarea:focus {
  outline: none;
}

button {
  border: none;
  cursor: pointer;
}

textarea {
  resize: none;
}

.heading-primary {
  font-size: 6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}

@media only screen and (max-width: 37.5em) {
  .heading-primary {
    font-size: 4.5rem;
  }
}

.heading-sec__mb-bg {
  margin-bottom: 11rem;
}

@media only screen and (max-width: 56.25em) {
  .heading-sec__mb-bg {
    margin-bottom: 8rem;
  }
}

.heading-sec__mb-med {
  margin-bottom: 9rem;
}

@media only screen and (max-width: 56.25em) {
  .heading-sec__mb-med {
    margin-bottom: 8rem;
  }
}

.heading-sec__main {
  display: block;
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

/* White titles for dark sections */
.projects .heading-sec__main,
.about .heading-sec__main,
.experience .heading-sec__main,
.github-stats .heading-sec__main {
  color: #fff;
}

.projects .heading-sec__sub,
.about .heading-sec__sub,
.experience .heading-sec__sub,
.github-stats .heading-sec__sub {
  color: rgba(255, 255, 255, 0.8);
}

/* Email link styling */
.email-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.email-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.heading-sec__main--lt {
  color: #fff;
}

.heading-sec__main--lt::after {
  content: "";
  background: #fff !important;
}

.heading-sec__main::after {
  content: "";
  position: absolute;
  top: calc(100% + 1.5rem);
  height: 5px;
  width: 3rem;
  background: rgba(var(--main-color), 1);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

@media only screen and (max-width: 37.5em) {
  .heading-sec__main::after {
    top: calc(100% + 1.2rem);
  }
}

.heading-sec__sub {
  display: block;
  text-align: center;
  color: #777;
  font-size: 2rem;
  font-weight: 500;
  max-width: 80rem;
  margin: auto;
  line-height: 1.6;
}

@media only screen and (max-width: 37.5em) {
  .heading-sec__sub {
    font-size: 1.8rem;
  }
}

.heading-sec__sub--lt {
  color: #eee;
}

.heading-sm {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-container {
  max-width: 120rem;
  margin: auto;
  width: 92%;
}

.btn {
  background: #fff;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  font-weight: 700;
  border-radius: 5px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--bg {
  padding: 1.5rem 8rem;
  font-size: 2rem;
}

.btn--med {
  padding: 1.5rem 5rem;
  font-size: 1.6rem;
}

.btn--theme {
  background: rgba(var(--main-color), 1);
  color: #fff;
}

.btn--theme-inv {
  color: rgba(var(--main-color), 1);
  background: #fff;
  border: 2px solid rgba(var(--main-color), 1);
  box-shadow: none;
  padding: calc(1.5rem - 2px) calc(5rem - 2px);
}

.sec-pad {
  padding: 12rem 0;
}

@media only screen and (max-width: 56.25em) {
  .sec-pad {
    padding: 8rem 0;
  }
}

.text-primary {
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  width: 100%;
  line-height: 1.6;
}

@media only screen and (max-width: 37.5em) {
  .text-primary {
    font-size: 2rem;
  }
}

.d-none {
  display: none;
}

/* rgba(var(--n-blue), 0.8)*/
/* qwe */
.home-hero {
  color: #fff;
  background: linear-gradient(rgba(24, 28, 46, 0.85), rgba(24, 28, 46, 0.85)),
    url(../assets/svg/common-bg.svg);
  background-color: #181c2e;
  background-position: center;
  background-size: cover;
  height: 100vh;
  min-height: 80rem;
  max-height: 120rem;
  position: relative;
  overflow: hidden;
  animation: backgroundShift 20s ease-in-out infinite,
    backgroundZoom 15s ease-in-out infinite;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(var(--main-color), 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(var(--main-color), 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@media only screen and (max-width: 37.5em) {
  .home-hero {
    height: unset;
    min-height: unset;
  }
}

.home-hero__socials {
  position: absolute;
  top: 50%;
  border: 2px solid #eee;
  border-left: 2px solid #eee;
  transform: translateY(-50%);
  z-index: 2;
  animation: fadeInLeft 1s ease-out 0.8s both;
}

@media only screen and (max-width: 56.25em) {
  .home-hero__socials {
    display: none;
  }
}

.home-hero__mouse-scroll-cont {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 1s ease-out 1s both, float 3s ease-in-out infinite 2s;
}

@media only screen and (max-width: 37.5em) {
  .home-hero__mouse-scroll-cont {
    display: none;
  }
}

.home-hero__social {
  width: 5rem;
}

.home-hero__social-icon-link {
  width: 100%;
  display: block;
  padding: 1.2rem;
  border-bottom: 2px solid #eee;
  transition: background 0.3s;
}

.home-hero__social-icon-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.home-hero__social-icon-link--bd-none {
  border-bottom: 0;
}

.home-hero__social-icon {
  width: 100%;
}

.home-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90rem;
  width: 92%;
  z-index: 2;
}

.home-hero__content .heading-primary {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.home-hero__content .text-primary {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.home-hero__content .btn {
  animation: fadeInUp 1s ease-out 0.6s both;
  transition: all 0.3s ease;
}

.home-hero__content .btn:hover {
  animation: glow 2s ease-in-out infinite;
}

@media only screen and (max-width: 37.5em) {
  .home-hero__content {
    padding: 19rem 0 13rem 0;
    margin: auto;
    position: static;
    transform: translate(0, 0);
  }
}

.home-hero__info {
  margin: 3rem auto 0 auto;
  max-width: 80rem;
}

.home-hero__cta {
  margin-top: 5rem;
  text-align: center;
}

/* Experience Section */
.experience {
  background: linear-gradient(135deg, #181c2e 0%, #1a1f32 100%);
  position: relative;
}

.experience__timeline {
  max-width: 80rem;
  margin: 0 auto;
}

.experience__item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 4rem;
  margin-bottom: 5rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid rgba(var(--main-color), 1);
  transition: all 0.3s ease;
}

.experience__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience__item:last-child {
  margin-bottom: 0;
}

.experience__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.experience__period {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(var(--main-color), 1);
  background: rgba(var(--main-color), 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.experience__location {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.experience__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.experience__company {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(var(--main-color), 1);
  margin-bottom: 2rem;
}

.experience__list {
  list-style: none;
  padding-left: 0;
}

.experience__list li {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.experience__list li::before {
  content: "▸";
  color: rgba(var(--main-color), 1);
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media only screen and (max-width: 56.25em) {
  .experience__item {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    padding: 2rem;
  }

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

  .experience__title {
    font-size: 2rem;
  }

  .experience__company {
    font-size: 1.6rem;
  }

  .experience__list li {
    font-size: 1.5rem;
  }
}

/* GitHub Stats Section */
.github-stats {
  background: linear-gradient(135deg, #0f1419 0%, #181c2e 100%);
  position: relative;
}

.github-stats__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.github-stats__graph {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(33, 110, 57, 0.3);
}

.github-stats__chart {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.github-stats__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 80rem;
}

.github-stats__card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(33, 110, 57, 0.3);
  transition: all 0.3s ease;
}

.github-stats__card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(57, 211, 83, 0.2);
}

.github-stats__streak {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(33, 110, 57, 0.3);
}

.github-stats__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media only screen and (max-width: 56.25em) {
  .github-stats__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .github-stats__content {
    gap: 3rem;
  }

  .github-stats__graph,
  .github-stats__card,
  .github-stats__streak {
    padding: 1.5rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .github-stats__graph,
  .github-stats__card,
  .github-stats__streak {
    padding: 1rem;
  }
}

.about {
  background: linear-gradient(135deg, #1a1f32 0%, #181c2e 100%);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10rem;
}

@media only screen and (max-width: 56.25em) {
  .about__content {
    grid-template-columns: 1fr;
    grid-gap: 8rem;
  }
}

.about__content-title {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #fff;
}

@media only screen and (max-width: 37.5em) {
  .about__content-title {
    font-size: 2.4rem;
  }
}

.about__content-details-para {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 60rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about__content-details-para--hl {
  font-weight: 700;
  margin: 0 3px;
}

.about__content-details-para:last-child {
  margin-bottom: 4rem;
}

/* Projects Section */
.projects {
  background: linear-gradient(135deg, #181c2e 0%, #1a1f32 100%);
  position: relative;
}

.projects__row-img {
  transition: transform 0.3s ease;
}

.projects__row-img:hover {
  transform: scale(1.02);
}

.projects__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 5rem;
  margin-bottom: 11rem;
}

@media only screen and (max-width: 56.25em) {
  .projects__row {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin-bottom: 8rem;
  }
}

@media only screen and (max-width: 56.25em) {
  .projects__row {
    text-align: center;
  }
}

.projects__row:last-child {
  margin-bottom: 0;
}

.projects__row-img-cont {
  overflow: hidden;
  border-radius: 15px;
}

.projects__row-img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}

.projects__row-content {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

@media only screen and (max-width: 56.25em) {
  .projects__row-content {
    align-items: center;
  }
}

.projects__row-content-title {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #fff;
}

@media only screen and (max-width: 37.5em) {
  .projects__row-content-title {
    font-size: 2.4rem;
  }
}

.projects__row-content-desc {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 60rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 37.5em) {
  .projects__row-content-desc {
    font-size: 1.7rem;
  }
}

.contact {
  background: linear-gradient(rgba(24, 28, 46, 0.95), rgba(26, 31, 50, 0.95)),
    url(../assets/svg/common-bg.svg);
  background-color: #181c2e;
  background-size: cover;
  background-position: center;
}

.project-cs-hero {
  color: #fff;
  background: linear-gradient(rgba(24, 28, 46, 0.9), rgba(24, 28, 46, 0.9)),
    url(../assets/svg/common-bg.svg);
  background-color: #181c2e;
  background-size: cover;
  background-position: center;
  position: relative;
  animation: backgroundShift 20s ease-in-out infinite;
}

@media only screen and (max-width: 37.5em) {
  .project-cs-hero {
    height: unset;
    min-height: unset;
  }
}

.project-cs-hero__content {
  padding: 25rem 0 17rem 0;
  max-width: 90rem;
  width: 92%;
  margin: auto;
}

@media only screen and (max-width: 37.5em) {
  .project-cs-hero__content {
    padding: 19rem 0 13rem 0;
    margin: auto;
    position: static;
    transform: translate(0, 0);
  }
}

.project-cs-hero__info {
  margin: 3rem auto 0 auto;
  max-width: 80rem;
}

.project-cs-hero__cta {
  margin-top: 5rem;
  text-align: center;
}

.project-details {
  background: linear-gradient(135deg, #1a1f32 0%, #181c2e 100%);
}

.project-details__content {
  padding: 8rem 0;
  max-width: 90rem;
  margin: auto;
}

.project-details__content-title {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #fff;
}

@media only screen and (max-width: 37.5em) {
  .project-details__content-title {
    font-size: 2.4rem;
  }
}

.project-details__showcase-img-cont {
  width: 100%;
  margin-bottom: 6rem;
  border-radius: 15px;
  overflow: hidden;
}

.project-details__showcase-img {
  width: 100%;
  border-radius: 15px;
}

.project-details__content-main {
  width: 100%;
  max-width: 70rem;
  margin: auto;
}

.project-details__desc {
  margin: 0 0 7rem 0;
}

.project-details__desc-para {
  font-size: 1.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.project-details__tools-used {
  margin: 0 0 7rem 0;
}

.project-details__tools-used-list {
  display: flex;
  flex-wrap: wrap;
}

.project-details__tools-used-item {
  padding: 1rem 2rem;
  margin-bottom: 1.5rem;
  margin-right: 1.5rem;
  font-size: 1.6rem;
  background: rgba(var(--main-color), 0.1);
  border: 1px solid rgba(var(--main-color), 0.3);
  border-radius: 20px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.project-details__tools-used-item:hover {
  background: rgba(var(--main-color), 0.2);
  border-color: rgba(var(--main-color), 0.5);
  transform: translateY(-2px);
}

.project-details__links {
  margin: 0 0;
}

.project-details__links-btn {
  margin-right: 2rem;
}

@media only screen and (max-width: 37.5em) {
  .project-details__links-btn {
    margin-right: 0;
    width: 70%;
    margin-bottom: 2rem;
    text-align: center;
  }
}

.project-details__links-btn:last-child {
  margin: 0;
}

@media only screen and (max-width: 37.5em) {
  .project-details__links-btn:last-child {
    margin: 0;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: rgba(24, 28, 46, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease,
    backdrop-filter 0.3s ease;
}

.header--hidden {
  transform: translateY(-100%);
}

.header--scrolled {
  background: rgba(24, 28, 46, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5rem;
  transition: padding 0.3s ease;
}

@media only screen and (max-width: 56.25em) {
  .header__content {
    padding: 0 2rem;
  }
}

.header__logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}

.header__logo-container:hover {
  color: rgba(var(--main-color), 1);
  transform: scale(1.05);
}

.header__logo-img-cont {
  width: 5rem;
  height: 5rem;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(var(--main-color), 1),
    rgba(var(--main-color), 0.8)
  );
  box-shadow: 0 4px 20px rgba(var(--main-color), 0.3);
  transition: all 0.3s ease;
}

.header__logo-img-cont:hover {
  box-shadow: 0 6px 25px rgba(var(--main-color), 0.4);
  transform: translateY(-2px);
}

@media only screen and (max-width: 56.25em) {
  .header__logo-img-cont {
    width: 4.5rem;
    height: 4.5rem;
    margin-right: 1.2rem;
  }
}

.header__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.header__logo-sub {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(
    135deg,
    rgba(var(--main-color), 1),
    rgba(var(--main-color), 0.7)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__links {
  display: flex;
}

@media only screen and (max-width: 37.5em) {
  .header__links {
    display: none;
  }
}

.header__link {
  padding: 2.2rem 3rem;
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: all 0.3s ease;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.header__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--main-color), 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.header__link:hover::before {
  left: 100%;
}

.header__link:hover {
  color: rgba(var(--main-color), 1);
  background: rgba(var(--main-color), 0.05);
  transform: translateY(-2px);
}

@media only screen and (max-width: 56.25em) {
  .header__link {
    padding: 3rem 1.8rem;
    font-size: 1.5rem;
  }
}

.header__main-ham-menu-cont {
  display: none;
  width: 3rem;
  padding: 2.2rem 0;
}

@media only screen and (max-width: 37.5em) {
  .header__main-ham-menu-cont {
    display: block;
  }
}

.header__main-ham-menu {
  width: 100%;
}

.header__main-ham-menu-close {
  width: 100%;
}

.header__sm-menu {
  background: rgba(24, 28, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: absolute;
  width: 100%;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header__sm-menu--active {
  visibility: hidden;
  opacity: 0;
}

@media only screen and (max-width: 37.5em) {
  .header__sm-menu--active {
    visibility: visible;
    opacity: 1;
  }
}

.header__sm-menu-link a {
  display: block;
  text-decoration: none;
  padding: 2.5rem 3rem;
  font-size: 1.6rem;
  color: #fff;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.header__sm-menu-link a:hover {
  color: rgba(var(--main-color), 1);
}

.header__sm-menu-link:first-child a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header__sm-menu-link-last {
  border-bottom: 0;
}

.main-footer {
  background: linear-gradient(135deg, #0f1419 0%, #181c2e 100%);
  color: #fff;
}

.main-footer__upper {
  display: flex;
  justify-content: space-between;
  padding: 8rem 0;
}

@media only screen and (max-width: 56.25em) {
  .main-footer__upper {
    padding: 6rem 0;
  }
}

@media only screen and (max-width: 37.5em) {
  .main-footer__upper {
    display: block;
  }
}

.main-footer__row-1 {
  order: 2;
}

@media only screen and (max-width: 56.25em) {
  .main-footer__row-1 {
    margin-bottom: 5rem;
  }
}

.main-footer__row-2 {
  width: 40%;
  order: 1;
  max-width: 50rem;
}

@media only screen and (max-width: 56.25em) {
  .main-footer__row-2 {
    width: 100%;
  }
}

.main-footer__short-desc {
  margin-top: 2rem;
  color: #eee;
  font-size: 1.5rem;
  line-height: 1.7;
}

.main-footer__social-cont {
  margin-top: 2rem;
}

.main-footer__icon {
  margin-right: 1rem;
  width: 2.5rem;
}

.main-footer__icon--mr-none {
  margin-right: 0;
}

.main-footer__lower {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #eee;
  font-size: 1.2rem;
  text-align: center;
}

.main-footer__lower a {
  text-decoration: underline;
  font-weight: bold;
  margin-left: 2px;
}

@media only screen and (max-width: 56.25em) {
  .main-footer__lower {
    padding: 3.5rem 0;
  }
}

.skills {
  display: flex;
  flex-wrap: wrap;
}

.skills__skill {
  padding: 1rem 2rem;
  margin-bottom: 1.5rem;
  margin-right: 1.5rem;
  font-size: 1.6rem;
  background: rgba(var(--main-color), 0.1);
  border: 1px solid rgba(var(--main-color), 0.3);
  border-radius: 20px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.skills__skill:hover {
  background: rgba(var(--main-color), 0.2);
  border-color: rgba(var(--main-color), 0.5);
  transform: translateY(-2px);
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid #eee;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
}

.mouse::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #eee;
  border-radius: 50%;
  opacity: 1;
  -webkit-animation: wheel 1.3s infinite;
  animation: wheel 1.3s infinite;
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 27px;
  }
}

@-webkit-keyframes wheel {
  to {
    opacity: 1;
    top: 27px;
  }
}

/* Landing Section Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(var(--main-color), 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(var(--main-color), 0.6);
  }
}

/* Animated Background Pattern */
@keyframes backgroundShift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes backgroundZoom {
  0%,
  100% {
    background-size: 100% 100%;
  }
  50% {
    background-size: 110% 110%;
  }
}
