@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Be Vietnam Pro", sans-serif;
}

#wrapper {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Header Start  */
header {
  width: 100%;
  /* height: auto; */
  display: flex;
  padding: 10px 50px;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  display: flex;
  justify-content: baseline;
  align-items: center;
}

header .logo img {
  width: 70px;
}

.logoText {
  margin-left: -0.8rem;
  font-size: 28px;
}

nav ul {
  display: flex;
  margin-right: 4em;
  padding: 0 4em;
  gap: 2rem;
}

nav ul li {
  list-style-type: none;
}

nav ul li a {
  text-decoration: none;
  color: #1f1f1f;
  transition: font-weight 0.3s;
  font-size: 20px;
  line-height: 17px;
  display: inline-block;
}

nav ul li a:hover {
  transform: scale(1.02);
  font-weight: bold;
}

/* Header End */

/* Hero Section Start  */
.heroSection {
  gap: 5rem;
  margin: 4rem auto;
  padding: 0 1rem;
  padding-bottom: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 1200px;
  max-width: 100%;
}

.infoContainer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  /* width: 100%; */
}

.fadedText {
  user-select: none;
  font-size: 6em;
  color: #e7e7e7;
  bottom: -16%;
  left: 0;
  font-weight: bold;
}

.absolute {
  position: absolute;
}

.heading {
  font-size: 35px;
  color: #343d68;
  line-height: 30px;
}

.role {
  color: #4e45d5;
  font-weight: 800;
}

.subHeading {
  font-size: 45px;
  line-height: 40px;
}

.desc {
  font-size: 16px;
  margin-top: 1rem;
  width: 70%;
  font-weight: 500;
}

.btn {
  background-color: #e84949;
  width: fit-content;
  color: white;
  padding: 0.8rem 2.3rem;
  box-shadow: 5px 5px 7px 0px #0000003f;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.5s;
  font-weight: 500;
  border: solid 3px transparent;
  position: relative;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.8s;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover {
  border: solid 3px #e84949;
  color: black;
}

.imgContainer {
  position: relative;
}

.userImage {
  padding: 2.5rem;
  transition: all 1s;
  animation: scaleImage 5s linear infinite;
  width: 345px;
  height: 390px;
}

@keyframes scaleImage {
  0% {
    scale: 1;
    filter: grayscale(1);
  }

  50% {
    filter: grayscale(0);
    box-shadow: 3px 3px 10px black;
    scale: 0.9;
  }

  100% {
    scale: 1;
    filter: grayscale(1);
  }
}

.userImage img {
  z-index: -9;
  width: 100%;
}

.icons {
  z-index: 9;
}

.iconDots {
  bottom: -1rem;
  right: 0;
  animation: dotsAnimation 5s linear infinite;
}

@keyframes dotsAnimation {
  50% {
    transform: translateY(-15px);
  }
}

.iconZigZag {
  z-index: 10;
  top: 1.5em;
  left: -0.3em;
  animation: zigzagAnimation 5s infinite;
}

@keyframes zigzagAnimation {
  50% {
    left: 5%;
    top: 3%;
  }
}

.icon-cube {
  z-index: 9;
  top: -0.8em;
  right: 1em;
  animation-name: cubeRotate;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes cubeRotate {
  0% {
    transform: rotateY(0deg) translateY(0px);
  }
  50% {
    transform: rotateY(180deg) translateY(-12px);
  }
  100% {
    transform: rotateY(360deg) translateY(0px);
  }
}

.icon-circle {
  z-index: 9;
  left: 0;
  bottom: 0;
  animation-name: shakeEffect;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes shakeEffect {
  50% {
    left: 5%;
    bottom: 10%;
  }
}
.icon-plus {
  z-index: 9;
  top: -0.8rem;
  left: 50%;
  animation: shakeEffectPlus 5s ease-in infinite;
}

@keyframes shakeEffectPlus {
  50% {
    top: 2%;
    left: 48%;
  }
}

/* Hero Section Ends  */

/* Projects Section  */
.projectSection {
  margin-top: 4rem;
  background-color: #e7e7e7;
}

.projectTitle {
  color: #e84949;
  font-size: 90px;
  line-height: 75px;
  padding: 50px 0 30px;
  text-align: center;
}

.projectContainer {
  display: flex;
  flex-direction: column;
  gap: 120px;
  /* width: 100%; */
}

#project1 {
  background-image: url(./Images/projects/Project1.png);
  right: 5%;
  
}

#project2 {
  background-image: url(./Images/projects/sa_cover.png);
  left: 5%;
}

.projectCard {
  width: 80%;
  height: 550px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0px 0px 40px #1f1f1f;
  margin: 2rem auto;
  z-index: 2;
  overflow: hidden;
}

/* Dim overlay always visible */
.projectCard::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Slightly dim the background */
  z-index: 1;
}

/* Hover gradient overlay */
.projectCard::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(45deg, #343d68, #343d68be, #343d687c);
  z-index: 2;
  transition: 0.5s all;
  transform-origin: left;
  transform: scaleX(0);
}

/* On hover, show gradient overlay */
.projectCard:hover::after {
  transform: scaleX(1);
}

/* Ensure content is above both overlays */
.projectCard * {
  position: relative;
  z-index: 3;
}


.projectNumber {
  position: absolute;
  font-size: 200px;
  font-weight: 600;
  color: #fff;
  display: none;
  z-index: 10;
  transition: 0.8s;
}

.rightNumber {
  top: -45px;
  right: -10px;
}

.secondNumber {
  top: -45px;
  right: -10px;
}

.projectCard:hover .projectNumber {
  display: block;
}

.projectCard::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #1f1f1f9a;
  z-index: 0;
}

.projectContent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  padding: 4em;
  bottom: 20%;
  position: absolute;
  z-index: 5;
  transition: all 0.4s;
}

.leftProjectContent {
  left: 5%;
}

.rightProjectContent {
  right: 5%;
}

.projectSkillsContainer {
  display: flex;
  flex-wrap: wrap;
  max-width: 60%;
  
  gap: 1em;
  
}

.projectSkill {
  width: 40px;
}
.projectHeading {
  font-size: 50px;
  font-weight: bold;
  line-height: 3rem;
}

.projectSubHeading {
  font-size: 16px;
  font-style: italic;
  width: 70%;
}

.projectCard:hover .projectContent {
  transform: scale(1.1);
}
.btnGroup {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  padding: 1rem;
}

.btnGroup .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;        /* smaller padding */
  font-size: 0.85rem;       /* smaller font */
  font-weight: 600;
  color: #000000;
  background: linear-gradient(135deg, #ff6a00, #ff3300);
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(255, 102, 0, 0.3);
  outline: none;
  background-clip: padding-box;
  overflow: hidden;
  height: 36px;             /* smaller height */
  line-height: 1;
  gap: 6px;
}

.btnGroup .btn .icon {
  font-size: 1rem;          /* smaller icon */
  line-height: 1;
  vertical-align: middle;
}

/* Nudge GitHub button slightly higher */
.btnGroup a.btn.iconBtn {
  margin-top: -3px;         /* adjust this value if needed */
}

/* Hover and focus states */
.btnGroup .btn:hover,
.btnGroup .btn:focus {
  color: black;
  border: 2px solid #ffae42;
  background: linear-gradient(135deg, #ff3300, #ff6a00);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.5);
  border-radius: 999px;
  outline: none;
}

.btnGroup .btn:active {
  transform: scale(0.97);
  box-shadow: 0 5px 10px rgba(255, 102, 0, 0.4);
}


.icon {
  cursor: pointer;
  color: white;
  font-size: 35px;
  transition: all 0.4s;
}

.icon:hover {
  color: #e84949;
}

/* Project Section End  */

/* Skill Section Start  */
.skillContainer {
  position: relative;
  display: flex;
  padding: 15rem;
  margin: -3rem auto 10rem auto; /* negative top margin */
  gap: 30px;
}

.leftSkillContainer {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.skillHeading {
  color: #e84949;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
}

.skillHeading span {
  font-size: 90px;
}

.skillSubHeading {
  margin-top: 1rem;
  width: 85%;
  text-align: justify;
}
.skillSubHeading p {
  margin: 15px 0;
}
.rightSkillContainer {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  width: 50%;
  position: relative;
  justify-content: center;
}

.blobStyle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: blobAnimation 3s linear infinite;
}

@keyframes blobAnimation {
  50% {
    top: 54%;
    left: 46%;
  }
}

.skillsLogo {
  width: 80px;
  transition: all 0.5s;
}

.skillsLogo:hover {
  transform: scale(1.2);
}

.skillFadedText {
  font-size: 12em;
  right: -9%;
  bottom: -35%;
  user-select: none;
  color: #e7e7e7;
  font-weight: bold;
}

/* Skill Section End  */

/* Contact Me Section Start  */
.contactMeSection {
  width: 100%;
  background-color: #e7e7e7;
  margin-top: -200px; /* Shift upwards */
  padding: 10rem 4rem 8rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.container h2 {
  font-size: 5em;
  padding-top: 2rem;
  color: #e84949;
  font-weight: 700;
  letter-spacing: 3px;
}

.container h3 {
  font-size: 3em;
  color: #343d68aa;
  font-weight: 500;
  margin-bottom: 3rem;
}

.contactUsForm {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactUsForm form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 600px;
  background: #fff;
  padding: 3rem 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.contactUsForm form:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.formFieldContainer {
  width: 100%;
}

.formField {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  font-size: 18px;
  border: 2px solid #e84949;
  border-radius: 8px;
  box-shadow: none;
  background: #ffffffcc;
  font-weight: 600;
  color: #222;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}

.formField::placeholder {
  color: #b04b4b;
  font-weight: 400;
}

.formField:focus {
  border-color: #343d68;
  background-color: #f9faff;
  box-shadow: 0 0 8px #343d68aa;
}

.formFieldContainer textarea.formField {
  height: 120px;
  padding-top: 1rem;
  resize: vertical;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.formBtn {
  text-align: center;
}

.formBtn .btn {
  background-color: #e84949;
  color: white;
  border: none;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 14px 50px;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(232, 73, 73, 0.4);
  transition: 0.5s ease;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.formBtn .btn:hover {
  background-color: #d73737;
  transform: scale(0.95);
  box-shadow: 0 10px 25px rgba(215, 55, 55, 0.5);
  color: black; /* Text turns black on hover */
}

.formBtn .btn i {
  font-size: 1.5rem;
  padding-left: 0.5rem;
}



/* Contact Me Section Ends  */

/* Footer Section Start  */
footer {
  background: linear-gradient(135deg, #5f6263, #777b7d, #727576);
  color: white;
  position: relative;
  padding: 2rem 1rem;
  overflow: hidden;
}

.footerContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footerLeft,
.footerCenter {
  flex: 1;
  min-width: 250px;
}

.footerRight {
  display: flex;  
  flex-direction: row;
  min-width: 250px;

}

.footerFadedText {
  font-size: 7em;
  color: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  user-select: none;
}

.linkContainer {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  margin-top: 1rem;
}

.linkContainer a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: color 0.4s;
}

.linkContainer a:hover {
  color: #ff6f61;
}

.contactContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contactItem {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}

.contactItem:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.contactIcon {
  font-size: 1.4rem;
  color: #ff6f61;
}

.contactItem a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.contactItem a:hover {
  color: #ff6f61;
}

.iconContainer {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.iconContainer a i {
  font-size: 1.8rem;
  color: white;
  transition: transform 0.3s, color 0.3s;
}

.iconContainer a:hover i {
  color: #ff6f61;
  transform: scale(1.2);
}

.don{
  position: absolute;
  bottom: 2rem;
  right: 0;
  padding: 0rem;
  font-weight: 600;
  font-size: 1.2rem;
  color:white;
  background-color: #d0d6d8;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

/* RESPONSIVE DESIGN */

/* Tablet and smaller desktop screens */
@media (max-width: 1024px) {
  /* Header */
  header {
    padding: 10px 30px;
  }
  
  nav ul {
    margin-right: 2em;
    padding: 0 2em;
    gap: 1.5rem;
  }
  
  nav ul li a {
    font-size: 18px;
  }
  
  /* Hero Section */
  .heroSection {
    width: 100%;
    gap: 3rem;
    padding: 0 2rem;
  }
  
  .heading {
    font-size: 30px;
    line-height: 28px;
  }
  
  .subHeading {
    font-size: 38px;
    line-height: 36px;
  }
  
  .desc {
    width: 80%;
  }
  
  .userImage {
    width: 300px;
    height: 340px;
  }
  
  .fadedText {
    font-size: 4em;
  }
  
  /* Projects */
  .projectTitle {
    font-size: 70px;
    line-height: 60px;
  }
  
  .projectCard {
    width: 90%;
    height: 480px;
  }
  
  .projectHeading {
    font-size: 40px;
    line-height: 2.5rem;
  }
  
  .projectContent {
    padding: 3em;
  }
  
  /* Skills */
  .skillContainer {
    padding: 3rem 1rem;
  }
  
  .skillHeading {
    font-size: 24px;
    line-height: 24px;
  }
  
  .skillHeading span {
    font-size: 40px;
  }
  
  .skillsLogo {
    width: 50px;
  }
  
  .skillFadedText {
    font-size: 4em;
  }
  
  /* Contact */
  .container h2 {
    font-size: 2.5em;
  }
  
  .container h3 {
    font-size: 1.5em;
  }
  
  .contactMeSection {
    padding: 4rem 0.5rem 3rem;
  }
  
  .contactUsForm form {
    padding: 1.5rem 1rem 1rem;
  }
  
  .formField {
    font-size: 14px;
    height: 40px;
  }
  
  .formBtn .btn {
    font-size: 1rem;
    padding: 10px 30px;
  }
  
  /* Footer */
  .footerFadedText {
    font-size: 2.5em;
  }
  
  .linkContainer {
    gap: 1rem;
    margin-top: 4rem;
  }
  
  .linkContainer a {
    font-size: 1rem;
  }
  
  .contactItem {
    padding: 0.8rem 1rem;
  }
  
  .contactIcon {
    font-size: 1.2rem;
  }
  
  .iconContainer a i {
    font-size: 1.5rem;
  }
  
  .don {
    font-size: 1rem;
    bottom: 1rem;
    right: 0.5rem;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .heroSection {
    padding: 0 0.5rem;
  }
  
  .heading {
    font-size: 20px;
  }
  
  .subHeading {
    font-size: 22px;
  }
  
  .userImage {
    width: 180px;
    height: 210px;
  }
  
  .projectTitle {
    font-size: 32px;
    line-height: 28px;
  }
  
  .projectCard {
    height: 320px;
  }
  
  .projectHeading {
    font-size: 20px;
  }
  
  .skillHeading {
    font-size: 20px;
  }
  
  .skillHeading span {
    font-size: 32px;
  }
  
  .container h2 {
    font-size: 2em;
  }
  
  .container h3 {
    font-size: 1.3em;
  }
  
  .footerFadedText {
    font-size: 2em;
  }
}
  .skillContainer {
    padding: 10rem 5rem;
  }
  
  .skillHeading {
    font-size: 40px;
    line-height: 40px;
  }
  
  .skillHeading span {
    font-size: 70px;
  }
  
  .skillFadedText {
    font-size: 10em;
  }
  
  /* Contact */
  .container h2 {
    font-size: 4em;
  }
  
  .container h3 {
    font-size: 2.5em;
  }
  
  .contactMeSection {
    padding: 8rem 2rem 6rem;
  }
  
  /* Footer */
  .footerFadedText {
    font-size: 5em;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  /* Header */
  header {
    padding: 10px 20px;
    flex-direction: column;
    gap: 1rem;
  }
  
  .logoText {
    font-size: 24px;
  }
  
  nav ul {
    margin-right: 0;
    padding: 0;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li a {
    font-size: 16px;
  }
  
  /* Hero Section */
  .heroSection {
    flex-direction: column;
    gap: 2rem;
    margin: 2rem auto;
    padding: 0 1rem;
    padding-bottom: 4rem;
  }
  
  .heading {
    font-size: 26px;
    line-height: 24px;
  }
  
  .subHeading {
    font-size: 32px;
    line-height: 30px;
  }
  
  .desc {
    width: 100%;
    font-size: 14px;
  }
  
  .userImage {
    width: 250px;
    height: 280px;
  }
  
  .fadedText {
    font-size: 3em;
    bottom: -10%;
  }
  
  /* Projects */
  .projectTitle {
    font-size: 50px;
    line-height: 45px;
    padding: 30px 0 20px;
  }
  
  .projectContainer {
    gap: 80px;
  }
  
  .projectCard {
    width: 95%;
    height: 400px;
  }
  
  .projectHeading {
    font-size: 30px;
    line-height: 2rem;
  }
  
  .projectContent {
    padding: 2em;
  }
  
  .projectSubHeading {
    width: 90%;
    font-size: 14px;
  }
  
  .projectSkillsContainer {
    max-width: 80%;
  }
  
  .projectSkill {
    width: 30px;
  }
  
  .btnGroup {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
  }
  
  .projectNumber {
    font-size: 120px;
  }
  
  /* Skills */
  .skillContainer {
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 3rem;
  }
  
  .leftSkillContainer,
  .rightSkillContainer {
    width: 100%;
  }
  
  .skillHeading {
    font-size: 30px;
    line-height: 30px;
    text-align: center;
  }
  
  .skillHeading span {
    font-size: 50px;
  }
  
  .skillSubHeading {
    width: 100%;
    text-align: center;
  }
  
  .rightSkillContainer {
    justify-content: center;
  }
  
  .skillsLogo {
    width: 60px;
  }
  
  .skillFadedText {
    font-size: 6em;
    right: -5%;
    bottom: -25%;
  }
  
  /* Contact */
  .container h2 {
    font-size: 3em;
  }
  
  .container h3 {
    font-size: 2em;
  }
  
  .contactMeSection {
    padding: 6rem 1rem 4rem;
    margin-top: -100px;
  }
  
  .contactUsForm form {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .formField {
    font-size: 16px;
  }
  
  .formBtn .btn {
    font-size: 1.2rem;
    padding: 12px 40px;
  }
  
  /* Footer */
  .footerContainer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footerLeft,
  .footerCenter,
  .footerRight {
    align-items: center;
  }

  .linkContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 6rem;
  }

  .footerFadedText {
    font-size: 3em;
    text-align: center;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  /* Header */
  header .logo img {
    width: 50px;
  }
  
  .logoText {
    font-size: 20px;
  }
  
  nav ul {
    gap: 0.8rem;
  }
  
  nav ul li a {
    font-size: 14px;
  }
  
  /* Hero Section */
  .heading {
    font-size: 22px;
    line-height: 20px;
  }
  
  .subHeading {
    font-size: 26px;
    line-height: 24px;
  }
  
  .desc {
    font-size: 13px;
  }
  
  .userImage {
    width: 200px;
    height: 230px;
  }
  
  .btn {
    font-size: 16px;
    padding: 0.6rem 1.8rem;
  }
  
  /* Projects */
  .projectTitle {
    font-size: 40px;
    line-height: 35px;
  }
  
  .projectCard {
    height: 350px;
  }
  
  .projectHeading {
    font-size: 24px;
    line-height: 1.5rem;
  }
  
  .projectContent {
    padding: 1.5em;
  }
  
  .projectSubHeading {
    font-size: 12px;
  }
  
  .projectSkill {
    width: 25px;
  }
  
  .btnGroup .btn {
    font-size: 0.75rem;
    padding: 6px 12px;
    height: 30px;
  }
  
  .projectNumber {
    font-size: 100px;
  }
  
  /* Skills */