@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap");
/*
 ______________________________________________
|                                              |
|     DEFAULT BODY AND OTHER CSS TAG           |
|______________________________________________|

*/
*,
::after,
::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --blue-theme: #9a9ae0;
  --blueAngle-shade: #7c7caf;
  --lightBlue-theme: #9a9ae0e0;
  --blueFont: #9a9ae1;
  --whiteFont: rgb(255, 255, 255);
  --white-shade: #fff;
  --html: #e44d26;
  --css: #2965f1;
  --js: #f7df1e;
  --react: #61dafb;
  --redux: #764abc;
  --node: #68a063;
  --db: #4db33d;
  --git: #f05033;
  --typescript: #3178c6;
  --microservices: #00adb5;
  --body-color: white;
  --btn-shadow: #ececec;
  --btn-angleShadow: rgb(241, 241, 241);
}

html {
  scroll-behavior: smooth;
}

body {
  color: black;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
  background-color: var(--body-color);
}

.dark-theme {
  --blue-theme: #9a9ae0;
  --lightBlue-theme: #9a9ae0e0;
  --blueFont: white;
  --white-shade: #fff;
  --body-color: #0e0e52;
}

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

header {
  width: 100%;
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
  height: 60px;
  background-color: var(--blue-theme);
}

main {
  width: 75%;
  margin: auto;
  margin-top: 1rem;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--white-shade);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--blue-theme);
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--lightBlue-theme);
}

/*
 ______________________________________________
|                                              |
|             CSS FOR NAVBAR                   |
|______________________________________________|

*/
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 75%;
  margin: 1.25rem auto;
}

.myLogo {
  color: var(--white-shade);
  font-weight: 700;
}

.navMenuDiv {
  width: 70%;
}

.navMenuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navitems a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--white-shade);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

.navLink:hover {
  -webkit-transform: translateY(-0.2rem);
  transform: translateY(-0.2rem);
}

#darkMode {
  display: none;
  cursor: pointer;
}

#darkMode a {
  color: #0e0e52;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

#lightMode {
  cursor: pointer;
  color: var(--white-shade);
}

#lightMode a {
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.active-link {
  color: #0e0e52;
  padding-bottom: 2px;
  border-bottom: 2px solid #0e0e52;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

/*
 ______________________________________________
|                                              |
|          CSS FOR HOME SECTION                |
|______________________________________________|

*/
.homeSection {
  height: 100vh;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1rem;
}

.socialMediaAndBlob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.socialMedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-right: 2rem;
}

.socialMediaLinks {
  margin: 1rem 0rem;
}

.socialMediaLinks i {
  color: var(--blueFont);
}

.svgAndDetails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50rem;
}

.myDetails {
  width: 80%;
}

.title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--blueFont);
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--blueFont);
}

.myDesc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 400;
  width: 21.875rem;
  color: var(--blueFont);
}

.contactMeBtn {
  color: var(--white-shade);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 1.875rem;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: var(--blue-theme);
  -webkit-box-shadow: 0 5px var(--blueAngle-shade);
  box-shadow: 0 5px var(--blueAngle-shade);
}

.contactMeBtn:hover,
.contactMeBtn:active {
  background-color: var(--lightBlue-theme);
  top: 1px;
  outline: none;
  cursor: pointer;
}

.contactMeBtn i {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contactMeBtn:hover i {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.blobGenerator {
  margin-left: -4rem;
  opacity: 0;
}

@-webkit-keyframes loading {
  0% {
    -webkit-clip-path: inset(0px 90% 0% 0%);
    clip-path: inset(0px 90% 0% 0%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0px 0% 0% 0%);
    clip-path: inset(0px 0% 0% 0%);
  }
}

@keyframes loading {
  0% {
    -webkit-clip-path: inset(0px 90% 0% 0%);
    clip-path: inset(0px 90% 0% 0%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0px 0% 0% 0%);
    clip-path: inset(0px 0% 0% 0%);
  }
}

#blobSvg {
  width: 25rem;
  overflow: hidden;
  display: inline-block;
}

#blob {
  fill: var(--blue-theme);
}

.blobImg {
  height: 29.75rem;
  width: 25rem;
  x: 5%;
  y: 10%;
  display: inline-block;
}

.scrollDownBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 5rem;
  margin-left: 11.5rem;
  cursor: pointer;
  width: 9.375rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.scrollDownBtn:hover {
  -webkit-transform: translateY(0.25rem);
  transform: translateY(0.25rem);
}

#mouseIcon,
.scrollDown,
#angleDownIcon {
  margin: 0.2rem;
  color: var(--blueFont);
}

#mouseIcon {
  font-size: 1.25rem;
}

.scrollDown {
  font-size: 15px;
}

/*
 ______________________________________________
|                                              |
|          CSS FOR ABOUT SECTION               |
|______________________________________________|

*/
.aboutSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  margin-top: 1rem;
}

.mainHeadingDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--blueFont);
  margin-top: 1rem;
}

.aboutMeHeading {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
  margin-top: 0rem;
}

.imgAndDescDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
}

.myImgDiv {
  margin: 1rem;
  opacity: 0;
}

.myImg {
  width: 18.75rem;
  border-radius: 15px;
}

@-webkit-keyframes scrolling {
  0% {
    -webkit-clip-path: inset(0px 0% 100% 0%);
    clip-path: inset(0px 0% 100% 0%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0px 0% 0% 0%);
    clip-path: inset(0px 0% 0% 0%);
  }
}

@keyframes scrolling {
  0% {
    -webkit-clip-path: inset(0px 0% 100% 0%);
    clip-path: inset(0px 0% 100% 0%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0px 0% 0% 0%);
    clip-path: inset(0px 0% 0% 0%);
  }
}

.aboutMeDesc {
  font-size: 1.2rem;
  font-weight: 400;
  width: 22.813rem;
}

.descriptionAndCvDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 2.5rem 0rem;
  color: var(--blueFont);
}

.expAndProjects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22.813rem;
  margin: 2.5rem 0rem;
}

.yearsDiv,
.projectsDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.yearExp,
.projectNo {
  font-size: 2rem;
}

.yearAndPrjctDes {
  font-weight: 400;
}

.downloadCvBtn {
  color: var(--white-shade);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 1.875rem;
  width: 13.75rem;
  border-radius: 10px;
  border: none;
  background-color: var(--blue-theme);
  cursor: pointer;
  outline: none;
  -webkit-box-shadow: 0 5px var(--blueAngle-shade);
  box-shadow: 0 5px var(--blueAngle-shade);
}

.downloadCvBtn:hover,
.downloadCvBtn:active {
  outline: none;
  cursor: pointer;
  background: var(--lightBlue-theme);
}

.downloadCvBtn i {
  font-size: 1.2rem;
  margin-left: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.downloadCvBtn:hover i {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

/*
 ______________________________________________
|                                              |
|          CSS FOR SKILL SECTION               |
|______________________________________________|

*/
.skillSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  margin-top: 5rem;
}

.skillHeadingDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--blueFont);
  margin-top: 1rem;
}

.skillHeading {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
  margin-top: -5rem;
}

.allSkillsList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  gap: 3.75rem;
  margin-top: 5rem;
}

.skillData {
  width: 19.688rem;
  background-color: var(--blue-theme);
  border-radius: 10px;
}

.skillsTitleAndICon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  color: var(--white-shade);
}

.skillsIcon {
  font-size: 1.2rem;
}

.skillName {
  font-size: 1.1rem;
}

.skillBar {
  width: 18.75rem;
  background-color: var(--white-shade);
  height: 10px;
  border-radius: 10px;
  margin: 6px auto;
  margin-top: 4px;
}

.skillBar div {
  height: 10px;
  border-radius: 10px;
  transition: width 1.5s ease-in-out, background-color 0.5s ease;
}

/* Individual skill progress bars */

.skillPercentageHTML {
  width: 90%;
  background-color: var(--html);
}

.skillPercentageCSS {
  width: 85%;
  background-color: var(--css);
}

.skillPercentageJS {
  width: 80%;
  background-color: var(--js);
}

.skillPercentageReact {
  width: 85%;
  background-color: var(--react);
}

.skillPercentageRedux {
  width: 75%;
  background-color: var(--redux);
}

.skillPercentageNode {
  width: 80%;
  background-color: var(--node);
}

.skillPercentageDB {
  width: 70%;
  background-color: var(--db);
}

.skillPercentageGit {
  width: 80%;
  background-color: var(--git);
}

.skillPercentageTools {
  width: 75%;
  background-color: var(--typescript);
}

.skillPercentageMicroservices {
  width: 70%;
  background-color: var(--microservices);
}

#flutterIcon {
  width: 25px;
  height: 20px;
  margin-left: -0.2rem;
}

/*
 ______________________________________________
|                                              |
|          CSS FOR PROJECT SECTION             |
|______________________________________________|

*/
.projectSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 180vh;
  margin-top: 1rem;
}

.projectHeadingDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--blueFont);
  margin-top: 1rem;
}

.projectsHeading {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
  margin-top: 0rem;
}

.allProjects {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(310px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.125rem 1.25rem;
  padding: 5px;
  overflow: hidden;
  position: relative;
  max-height: 100%;
  margin: 1.5rem 0rem;
}

.card {
  -ms-grid-column-align: center;
  justify-self: center;
  margin: 0px;
  padding: 0px;
  border-radius: 10px;
  overflow: hidden;
  width: 25rem;
  max-width: 90%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 15px;
  background-color: var(--whiteFont);
  -webkit-box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.projectLinks {
  margin: 0rem 0.1rem;
  background-color: var(--blue-theme);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.projectLinks i {
  color: var(--white-shade);
}

.titleAndIconDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0.5rem;
  color: var(--blue-theme);
}

.projectImg {
  width: 100%;
  border-radius: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.projectIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.projectConti {
  position: relative;
  width: 100%;
}

.showBtnDiv {
  width: 100%;
  height: 18.75rem;
  border-radius: 10px;
  position: absolute;
  z-index: 6;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    color-stop(20%),
    to(var(--body-color))
  );
  background: linear-gradient(rgba(0, 0, 0, 0), 20%, var(--body-color));
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.showAllBtn {
  position: absolute;
  left: 50%;
  z-index: 6;
  top: 0;
  padding: 0.938rem 2.5rem;
  font-weight: bold;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--white-shade);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 1.875rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  outline: none;
  background-color: var(--blue-theme);
}

.showAllBtn:hover,
.showAllBtn:active {
  outline: none;
  cursor: pointer;
  background: var(--lightBlue-theme);
}

.showAllBtn i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 0.2rem;
  font-size: 1rem;
  color: var(--white-shade);
}

.showAllBtn:hover i {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

/*
 ______________________________________________
|                                              |
|          CSS FOR CONTACT SECTION             |
|______________________________________________|

*/
.contactSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 105vh;
}

.contactDiv {
  background-color: var(--blue-theme);
  width: 100%;
  height: 100%;
  margin-top: 4rem;
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 25px;
  position: relative;
}

.mailSection {
  width: 100%;
  margin: 0rem 4rem;
}

.contactHeadingDiv {
  color: var(--white-shade);
}

.contactHeading {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.contactHeadingDiv .introHeading {
  font-size: 0.9rem;
  margin: 1rem 0rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contactHeadingDiv .introHeading i {
  margin: 0rem 0.3rem;
}

.contactForm {
  color: var(--white-shade);
}

.contactContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0.7rem 0rem;
}

.contactLabel {
  margin: 0.5rem 0rem;
}

.contactInput {
  width: 100%;
  background-color: #e3e8ff;
  border: none;
  outline: none;
  font-size: 1rem;
  color: rgba(1, 1, 8, 0.863);
  padding: 0.7rem 0.5rem;
  border-radius: 10px;
}

textarea {
  resize: none;
}

.msgBtnDiv {
  margin-top: 2.5rem;
}

.msgButton {
  color: var(--blue-theme);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4% 8%;
  width: 13.75rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
  outline: none;
  background-color: var(--white-shade);
  -webkit-box-shadow: 0 5px #d3d6d8;
  box-shadow: 0 5px #d3d6d8;
}

.msgButton:hover {
  -webkit-box-shadow: 0 3px #d3d6d8;
  box-shadow: 0 3px #d3d6d8;
  top: 1px;
  outline: none;
  cursor: pointer;
}

.msgButton:active {
  -webkit-box-shadow: 0 0 #d3d6d8;
  box-shadow: 0 0 #d3d6d8;
  top: 5px;
  outline: none;
  cursor: pointer;
}

.msgButton i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 0.2rem;
}

.msgButton:hover i {
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
}

.logoSection {
  width: 100%;
  margin: 0rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mailImg {
  margin-top: -1.5rem;
  margin-left: -3rem;
  width: 90%;
}

.conatctInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1.5rem 0rem;
}

.phoneIcon,
.mailIcon {
  font-size: 1.5rem;
  margin: 1rem;
  color: var(--white-shade);
}

.infoTitle {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--white-shade);
}

.infoSubtite {
  font-weight: 400;
  color: var(--white-shade);
}

.contactDesgin {
  position: absolute;
  height: 1.875rem;
  background-color: red;
  border-radius: 15px;
  width: 9.375rem;
}

.oneDiv {
  top: 45px;
  left: -100px;
  background-color: var(--body-color);
}

.twoDiv {
  top: 45px;
  right: -75px;
  background-color: var(--body-color);
}

.threeDiv {
  top: 15px;
  right: -40px;
  background-color: var(--blue-theme);
}

.fourthDiv {
  top: 450px;
  right: -115px;
  background-color: var(--body-color);
}

.fifthDiv {
  top: 480px;
  right: -30px;
  background-color: var(--blue-theme);
  height: 50px;
  border-radius: 25px;
}

.sixthDiv {
  top: 195px;
  left: -25px;
  width: 75px;
  height: 40px;
  border-radius: 25px;
  background-color: var(--blue-theme);
}

.seventhDiv {
  top: 235px;
  left: -100px;
  background-color: var(--body-color);
}

.eigthDiv {
  top: 265px;
  left: -45px;
  width: 75px;
  height: 40px;
  border-radius: 25px;
  background-color: var(--blue-theme);
}

.ninthDiv {
  top: 75px;
  right: -30px;
  background-color: var(--blue-theme);
  height: 50px;
  border-radius: 25px;
}

/*
 ______________________________________________
|                                              |
|          CSS FOR FOTTER SECTION              |
|______________________________________________|

*/
.footer {
  width: 100%;
  height: 18.75rem;
  background-color: var(--blue-theme);
}

.fotterBg {
  width: 75%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fotterConti {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 12.5rem;
  padding: 1.5rem 1rem;
}

.fotterDetails {
  width: 18.75rem;
}

.fotterTitle {
  color: var(--white-shade);
}

.fotterSubttitle {
  color: var(--white-shade);
  font-weight: 400;
  margin-top: 1rem;
}

.footerLinksDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footerLinksList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
}

.footerSocialMediaDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 25rem;
  margin-top: 2rem;
}

.footerSocialLinks {
  margin: 0rem 0.8rem;
  background-color: var(--white-shade);
  border-radius: 50%;
  height: 2.5rem;
  width: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footerSocialLinks i {
  color: #9a9ae0;
  padding: 10px;
}

.fotterLink {
  font-weight: 700;
  color: var(--white-shade);
}

.fotterLink:hover {
  font-weight: 700;
  color: #0e0e52;
}

.copyright {
  margin: 1rem 0rem;
  color: var(--white-shade);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 80%;
}

.copyright h3 {
  font-size: 1.5rem;
  opacity: 0;
}

.copyright h4 {
  margin: 0rem 0.3rem;
  font-family: "Dancing Script", cursive;
  font-size: 1.5rem;
  opacity: 0;
}

.fotterLine {
  height: 2px;
  width: 75%;
  background-color: #bbbbbb;
  margin: 0rem auto;
}

/*
 ______________________________________________
|                                              |
|            MEDIA QUERIES CSS                 |
|______________________________________________|
*/
@media screen and (min-width: 741px) {
  /*
 ______________________________________________
|                                              |
|     DEFAULT BODY AND OTHER CSS TAG           |
|______________________________________________|

*/
  header {
    top: 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.055) 0px 5px 10px;
    box-shadow: rgba(0, 0, 0, 0.055) 0px 5px 10px;
  }
  /*
 ______________________________________________
|                                              |
|             CSS FOR NAVBAR                   |
|______________________________________________|

*/
  #nav-close,
  .navBtns {
    display: none;
  }
  .navLink {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .navLink i {
    display: none;
  }
  .navLink span {
    display: none;
  }
  #lightMode i {
    display: block;
  }
  #darkMode i {
    display: block;
  }
}

@media screen and (max-width: 740px) {
  /*
 ______________________________________________
|                                              |
|     DEFAULT BODY AND OTHER CSS TAG           |
|______________________________________________|

*/
  header {
    bottom: 0;
    -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 1.5rem 1.5rem 0 0;
    height: auto;
  }
  /*
 ______________________________________________
|                                              |
|             CSS FOR NAVBAR                   |
|______________________________________________|

*/
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 90%;
    margin: 1.25rem auto;
  }
  .navMenuDiv {
    width: 90%;
  }
  .navToggle {
    color: var(--white-shade);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: block;
  }
  .hideAndSeek {
    display: none;
  }
  .navMenuList {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1rem;
  }
  #nav-close {
    color: var(--white-shade);
    position: absolute;
    right: 1.3rem;
    bottom: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .navLink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .navLink i {
    margin: 0.5rem 0rem;
    font-size: 1.2rem;
  }
  .active-link {
    padding-bottom: 0px;
    border-bottom: none;
  }
  /*
 ______________________________________________
|                                              |
|          CSS FOR HOME SECTION                |
|______________________________________________|

*/
  main {
    /* width: 95%; */
    margin: 0rem auto;
  }
  .homeSection {
    height: auto;
    margin: auto;
    margin-top: -3rem;
  }
  .socialMediaAndBlob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .socialMediaLinks {
    margin: 1rem 0rem;
    margin-right: 3rem;
  }
  .svgAndDetails {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .myDetails {
    width: 90%;
  }
  .title,
  .subtitle,
  .myDesc {
    width: 90%;
  }
  .title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .myDesc {
    font-size: 1.1rem;
  }
  #blobSvg {
    width: 115%;
  }
  .blobImg {
    height: 28.75rem;
    width: 21rem;
    x: 9%;
  }
  .scrollDownBtn {
    display: none;
    margin-top: 3rem;
    margin-left: 0.7rem;
  }
  .contactMeBtn {
    display: inline-block;
    width: 115% !important;
  }
  /*
 ______________________________________________
|                                              |
|          CSS FOR ABOUT SECTION               |
|______________________________________________|


*/
  .aboutSection {
    height: 182vh;
    margin: auto;
    margin-top: 5rem;
  }
  .aboutMeHeading {
    font-size: 1.7rem;
    margin-top: 2rem;
  }
  .imgAndDescDiv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .myImg {
    width: 200px;
  }
  .aboutMeDesc {
    width: 80%;
  }
  .descriptionAndCvDiv {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 1.5rem 0rem;
  }
  .yearExp,
  .projectNo {
    font-size: 1.5rem;
  }
  .expAndProjects {
    width: 80%;
    margin: 2.5rem 0rem;
  }
  /*
 ______________________________________________
|                                              |
|          CSS FOR SKILL SECTION               |
|______________________________________________|

*/
  .skillSection {
    height: auto;
    margin: auto;
    margin-top: 5rem;
  }
  .skillHeading {
    font-size: 1.7rem;
    margin-top: 2rem;
  }
  .allSkillsList {
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 2.75rem;
    margin-top: 3rem;
  }
  .skillData {
    width: 20rem;
  }
  .skillBar {
    width: 19rem;
  }
  /*
 ______________________________________________
|                                              |
|          CSS FOR PROJECT SECTION             |
|______________________________________________|

*/
  .projectSection {
    height: auto;
    margin: auto;
    margin-top: 5rem;
  }
  .projectsHeading {
    font-size: 1.7rem;
    margin-top: 2rem;
  }
  .allProjects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 3rem;
  }
  .card {
    height: auto;
    min-width: 90%;
  }
  .titleAndIconDiv {
    margin-top: 2rem;
  }
  .showBtnDiv {
    height: 13%;
    left: 0;
    right: 0;
  }
  /*
 ______________________________________________
|                                              |
|          CSS FOR CONTACT SECTION             |
|______________________________________________|

*/
  .contactSection {
    height: auto;
    margin: 3rem auto;
  }
  .contactDiv {
    width: 90%;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contactHeading {
    margin-top: 2rem;
  }
  .mailSection,
  .logoSection {
    width: 75%;
    margin: 1rem auto;
  }
  .logoSection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contactDesgin {
    display: none;
  }
  /*
  
 ______________________________________________
|                                              |
|          CSS FOR FOTTER SECTION              |
|______________________________________________|

*/
  .footer {
    height: auto;
    padding-top: 2rem;
  }
  .fotterBg {
    width: 90%;
  }
  .fotterConti {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 90%;
  }
  .fotterSubttitle {
    width: 80%;
  }
  .footerLinksDiv {
    width: 90%;
  }
  .footerLinksList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 2rem 0rem;
    width: 90%;
  }
  .footerLinksList li {
    margin: 1rem 0rem;
  }
  .footerSocialMediaDiv {
    width: 10rem;
    margin-top: 0rem;
  }
  .fotterLink {
    margin: 8rem 0rem;
    height: 13rem;
    font-size: 1.2rem;
  }
  .footerSocialLinks {
    width: 3.5rem;
  }
  .fotterLine {
    width: 90%;
    margin: 1rem 0rem;
    margin-top: 16rem;
  }
  .copyright {
    margin-bottom: 8rem;
    width: 90%;
  }
}
