/* 
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400

- Line heights
Default: 1



---02 COLORS

-Primary: #13ADC7 #6978D1 #945DD6

#0f1624;
#fff
#BCBCBC


--- 05 SHADOWS

--- 06 BORDER-RADIUS

---07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 32 / 48 / 64 / 80 /96 / 128

*/

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

html {
  font-size: 62.5%;
  overflow-x: hidden;
  /* scroll-behavior: smooth; */
}

body {
  font-family: "poppins", sans-serif;
  /* Ashutosh: i have commented this because it was adding Verticle 
  double scroll on whole page, i did not see any benefit after applying this css */
  /* line-height: 1; */
  background-color: #0f1624;
  color: #fff;

  /* Only works if nothing abdolutely positioned in relation to body */
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/*****************************/
/* GENERAL REUSABLE COMPONENTS */
/****************************/

.container {
  max-width: 120rem;
  padding: 0 5rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 15rem;
  row-gap: 7rem;
  align-items: center;
  margin-bottom: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.heading-primary {
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

.btn:link,
.btn:visited {
  display: inline-block;
  background: linear-gradient(270deg, #13adc7 0%, #6978d1 66.67%, #945dd6 100%);
  color: #fff;
  font-size: 2rem;
  padding: 2rem 5rem;
  border-radius: 83px;
  letter-spacing: 1px;
  text-decoration: none;
  margin-left: 7rem;
}

.btn:hover,
.btn:active {
  background: #945dd6;
  color: #fff;
}

/*****************************/
/* HEADER */
/****************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background-color: #0f1624;

  height: 8rem;
  padding: 0 9rem;
  position: relative;
}

/* .grid-header--3-cols {
  grid-template-columns: 1fr 2fr 1fr;
} */

.logo {
  width: 4rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.Portfolio {
  font-size: 2rem;
}

/*****************************/
/* NAVIGATION */
/****************************/

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24rem;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #13adc7;
}

.icon-links:link,
.icon-links:visited {
  text-decoration: none;
  font-size: 3rem;
  color: #fff;
}

.icon-links:hover,
.icon-links:active {
  color: #fff;
}

/* MOBILE */

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #fff;
}

.close-icon {
  display: none;
}

/* STICKY NAVIGATION */

.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #0f1624;
  z-index: 9997;
}

.sticky .section-hero {
  /* Ashutosh: this has no use because
  this margin is not shown when sticky is applied */
  /* margin-top: 12rem; */
}
/*****************************/
/* HERO SECTION */
/****************************/

.section-hero {
  padding: 12rem 0 9.6rem 0;
  position: relative;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 8rem;

  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 14rem;
  align-items: center;
}

.hero-description {
  font-size: 2.6rem;
  color: #bcbcbc;
  line-height: 1.5;
  margin-bottom: 5.8rem;
}

/* .hero-image {
  background-image: url("../img/drawing.png");
  background-repeat: no-repeat;
  right: 50%;
  left: 50%;
} */

.hero-text-box::after {
  /* alternative way 
  content: url(../img/drawing.png);
  position: absolute;
  right: 0;
  top: 12rem;
  width: 40%; 
  height: 470px;    */

  position: absolute;
  right: 0;
  top: 14rem;
  content: "";
  background-image: url(../img/drawing.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: calc(100% - 2px) 0;
  width: 55rem;
  height: 55rem;
}

/*****************************/
/* PROJECTS SECTION */
/****************************/

.section-project {
  padding: 12rem 0rem 9.6rem 0rem;
  margin: 0 auto;
}

.screen-img {
  border-radius: 4px;
  width: 100%;
}

.projects {
  border-radius: 35px 0;
  box-shadow: 0 0 0.9rem 0 #fff;
  overflow: hidden;
  padding: 1.8rem;
  width: 84%;
}

.project--startup {
  justify-self: end;
}

.pro-title {
  display: block;
  font-size: 2.6rem;
  padding: 2rem;
}

.project--h {
  padding-bottom: 7.5rem;
}

.border {
  width: 26rem;
  height: 0.3rem;
  background: linear-gradient(270deg, #13adc7 0%, #6978d1 66.67%, #945dd6 100%);
  margin-bottom: 3rem;
  margin-left: 6.2rem;
}

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

.pro-description {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.btn-short:link,
.btn-short:visited {
  display: inline-block;
  padding: 1.5rem 3.5rem;
  font-size: 1.5rem;
  margin-left: 0;
  margin-bottom: 2rem;
}

/*****************************/
/* TECHNOLOGIES SECTION */
/****************************/

.section-technologies {
  padding: 12rem 0 9.6rem 0;
  margin: 0 auto;
}

.techno {
  margin-bottom: 10rem;
}

.container-t {
  max-width: 120rem;
  padding: 0 10rem;
  margin: 0 auto;
}

.progress-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2rem;
}

.bar-graph-content {
  margin-bottom: 5rem;
}

.program-neame {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}
.ad--up {
  font-size: 1.8rem;
  padding-right: 8rem;
}

.bar-graph {
  display: flex;
  overflow: hidden;
  /* width: 97rem; */
  height: 2.3rem;
  border-radius: 50px;
  background: #162950;
}

.bar-graph-fill {
  width: 74%;
  height: 100%;
  background: linear-gradient(270deg, #13adc7 0%, #6978d1 66.67%, #945dd6 100%);
  border-radius: 12px;
}

.bar-graph-half {
  width: 50%;
}

.bar-graph-quarter {
  width: 24%;
}

/* ************************* */

.heading-secondary {
  font-size: 2.6rem;
  margin-top: 8rem;
}

.additional-skills {
  font-size: 2.6rem;
}

.additional-skill-grid {
  display: grid;
  column-gap: 15rem;
  row-gap: 4rem;
  margin-top: 7rem;
  padding-left: 14rem;
}

/*****************************/
/* ABOUT ME */
/****************************/

.section-about-me {
  padding: 12rem 0;
  margin: 0 auto;
}

.img-puja {
  width: 100%;
}

.about-description {
  font-size: 3.4rem;
  font-family: League Spartan;
  font-weight: 200;
  line-height: 1.5;
  margin-bottom: 6rem;
}

.about-grid {
  display: grid;
  column-gap: 15rem;
}

.grid-2-cols {
  grid-template-columns: 1fr 2fr;
}

/*****************************/
/* FOOTER */
/****************************/

.footer {
  /* padding: 0 15rem; */
  padding: 1rem 0;
  margin: 0 auto;
}

/* .grid--footer {
  grid-template-columns: 1fr 1fr 1fr;
} */

.container-f {
  max-width: 120rem;
  padding: 0 8rem;
  margin: 0 auto;
}

.link {
  font-size: 3rem;
  margin-bottom: 2rem;
  margin-right: 2rem;
}

.grid-f {
  display: grid;
  column-gap: 8rem;
  row-gap: 7rem;
  align-items: center;
}

.social-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 3rem;
  color: #fff;
}

.footer-link:hover,
.footer-link:active {
  color: #fff;
}

.link-icon:link,
.link-icon:visited {
  text-decoration: none;
  font-size: 6rem;
  color: #fff;
}

.link-icon:hover,
.link-icon:active {
  color: #fff;
}
