/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  width: 100vw;
}

/*---------------------------------------------------------------------*/
/*Nav bar*/
/*---------------------------------------------------------------------*/

#navbar {
  background-color: #e5e5e5;
  color: #ffffff;
  font-size: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4em;
  z-index: 4;
}

#arun-chacko {
  font-size: 16px;
  font-weight: 600;
  color: rgb(82, 82, 82);
  transition: 0.5s;
  cursor: pointer;
}

#arun-chacko:hover {
  color: #7d2ae8;
  /*transform: scale(1.02);*/
}
@media (min-width: 701px) {
  .on-screen-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }

  .on-screen-menu a {
    width: 7em;
    height: 70%;
    padding: 3px;
    font-size: 1.2em;
    background-color: #525252;
    margin: 10px;
    border-radius: 5px;
    text-align: center;
    color: white;
    text-decoration: none;
  }

  .on-screen-menu a:hover {
    background-color: #7d2ae8;
    color: white;
  }

  /* base styles */

  a {
    color: white;
  }
  a:visited {
    color: white;
  }
  a:hover {
    color: #6f86ff;
  }
}

@media (max-width: 700px) {
  /* off-screen-menu */
  .off-screen-menu {
    background-color: rgb(0, 0, 0);
    height: 105vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    text-align: center;
    font-size: 3rem;
    transition: 0.3s ease;
    z-index: 1;
  }
  .off-screen-menu.active {
    right: 0;
  }

  /* Hide the off-screen menu by default */
  .off-screen-menu {
    display: none;
  }

  .off-screen-menu a {
    text-decoration: none;
    color: white;
    z-index: 5;
  }
  .off-screen-menu a:hover {
    color: #7d2ae8;
  }

  .ham-menu {
    height: 50px;
    width: 40px;
    margin-left: auto;
    position: relative;
    opacity: 0;
    display: none;
    z-index: 2;
  }

  /* Activate the ham menu and show off-screen menu when browser width is less than 700px */

  .ham-menu {
    display: block; /* Show the ham menu */

    opacity: 1;
  }

  .off-screen-menu.active {
    display: flex; /* Show the off-screen menu */
  }

  .on-screen-menu a {
    display: none;
  }

  /* ham menu */

  .ham-menu span {
    height: 5px;
    width: 100%;
    background-color: #a1a1a1;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
  }
  .ham-menu span:nth-child(1) {
    top: 25%;
  }
  .ham-menu span:nth-child(3) {
    top: 75%;
  }
  .ham-menu.active span {
    background-color: #a1a1a1;
  }
  .ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .ham-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

@media screen and (min-width: 701px) {
  .off-screen-menu {
    display: none;
  }
}

/*---------------------------------------------------------------------*/
/*Nav bar END*/
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/*Mobile Layout*/
/*---------------------------------------------------------------------*/

@media screen and (max-width: 700px) {
  /* Add styles specific to mobile devices here */

  #intro-section-layout {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .intro-section-container {
    width: 80%;
    height: auto;
    padding-top: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  #chart-container {
    display: none;
  }

  #hi {
    font-weight: 500;
    color: #000000;
    font-size: larger;
    text-align: center;
  }

  #visual-designer-developer {
    margin-top: 10px;
    font-size: 10vw;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    text-align: center;
  }

  #bio {
    color: #000000;
    width: 100%;
    margin-top: 20px;
    font-size: larger;
    text-align: center;
  }
}

/*---------------------------------------------------------------------*/
/*SECTION 01 INTRO*/
/*---------------------------------------------------------------------*/
/*
#intro-section-layout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
*/

@media screen and (min-width: 701px) {
  #chart-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
  }

  .intro-section-container {
    width: 50%;
    height: 100vh;
    padding-left: 10%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }

  #visual-designer-developer {
    margin-top: 10px;
    font-size: 5vw;
    font-weight: 600;
    line-height: normal;
    color: #000000;
  }

  #bio {
    color: #000000;
    width: 400px;
    margin-top: 20px;
    font-size: larger;
  }
}

.hiredby-layout-line {
  width: 50%; /* Set the width to 50% of the container's width */
  margin: 50px auto;
  border: #e4e4e4 0.1px solid;
}

.hiredby-grid-container {
  display: grid;
  padding: 0% 10%;
  grid-template-columns: 100%;
}

.hiredby-grid-item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px 0px;
}

.hiredby-flex-item {
  height: 150px;
  width: 300px;
  border-radius: 10px;
  background-color: #e8e8e8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hiredby-flex-item img {
  max-height: 50px;
}

.hiredby-note {
  flex-grow: 1;
  flex-direction: column;
  font-size: 1.3em;
  text-align: center;
  padding: 20px;
}

#hi {
  font-weight: 500;
  color: #000000;
  font-size: larger;
}

#i-create {
  transition: opacity 0.5s ease-in-out;
}

#view-more {
  width: 150px;
  height: 40px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.5s;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 030px;
}

/* --------------------------------------View more button animation start-------------------------------------- */
.button {
  position: relative;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  color: #fff;
  cursor: pointer;
  background-color: #7d2ae8;
  transition: all 0.2s ease;
  z-index: 1;
}

.button:active {
  transform: scale(0.96);
}

.button:before,
.button:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.button:hover:before {
  top: -70%;
  background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #7d2ae8 20%, transparent 30%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.button:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
/* --------------------------------------View more button animation end-------------------------------------- */

hr {
  width: 50%; /* Set the width to 50% of the container's width */
  margin: 0 auto;
  border: #e4e4e4 0.1px solid; /* Center the hr element horizontally */
}

/*---------------------------------------------------------------------*/
/*SECTION 02 HIRED BY*/
/*---------------------------------------------------------------------*/

#sec-02-experience {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 10%;
  height: 200 px;
}

#logo-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
  width: 100%;
}

#logo-container div {
  height: 100px;
  width: 20%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 5px;
  transition: all 0.5s ease;
}

#logo-container div:hover {
  transform: scale(1.02);
}

#logo-container div img {
  width: 70%;
}

#kpmg {
  max-width: 50%;
}

#ey {
  max-width: 50px;
}

#hiring-note {
  margin-top: 30px;
  text-align: center;
  color: #7e7e7e;
}

/*---------------------------------------------------------------------*/
/*SECTION 03 WORKS*/
/*---------------------------------------------------------------------*/

/* ---------------------------------Project section START------------------------------------- */

#sec-23-project-tiles {
  width: 100%;
  height: auto;
  padding: 5% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sec-23-project-tiles h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

/* --------------------------------------Project tiles START-------------------------------------- */
.project-cards {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 050px;
  width: 100%;
  height: auto;
  padding: 10px;
}

.project-cards .work01 {
  background-color: #007e9e;
  background-image: url(images/Project01.png);
}

.project-cards .work02 {
  background-color: #0062ff;
  background-image: url(images/Project04.png);
}

.project-cards .work03 {
  background-color: #18cd5e;
  background-image: url(images/Project05.png);
}

.project-cards .work04 {
  background-color: #18cd5e;
  background-image: url(images/Project02.png);
}

.project-cards .work05 {
  background-color: #18cd5e;
  background-image: url(images/Project03.png);
}

.project-cards .work06 {
  background-color: #18cd5e;
  background-image: url(images/Project06.png);
}

.project-cards .card {
  display: flex;
  align-items: flex-start;
  padding: 40px;
  justify-content: flex-end;
  flex-direction: column;
  text-align: center;
  height: 270px;
  width: 420px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 400ms;
  background-size: cover;
  overflow: hidden;
}

.project-cards .card p.tip {
  font-size: 1em;
  font-weight: 700;
}

.project-cards .card p.second-text {
  font-size: 0.7em;
}

.project-cards .card:hover {
  transform: scale(1.2, 1.2);
}

.project-cards:hover > .card:not(:hover) {
  filter: blur(10px);
  transform: scale(0.9, 0.9);
}
/* --------------------------------------Project tiles END-------------------------------------- */

/*---------------------------------------------------------------------*/
/*SECTION 04 SKILLS*/
/*---------------------------------------------------------------------*/

#sec-04-skills {
  width: 100%;
  height: auto;

  padding: 0% 10%;
  padding-top: 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sec-04-skills h1 {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

/* ----------------------------------Skill Toggle button start---------------------------------- */

.btn-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  margin: 10px;
}

.btn-color-mode-switch {
  display: inline-block;
  margin: 0px;
  position: relative;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner {
  margin: 0px;
  width: 140px;
  height: 40px;
  background-color: #d3d3d3;
  border-radius: 26px;

  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
  display: block;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  top: 9px;
  right: 20px;
  color: #8f8f8f;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  width: 70px;
  height: 25px;
  background: #7d2ae8;
  border-radius: 26px;
  position: absolute;
  font-size: 12px;
  display: flex;
  justify-content: center;
  left: 2px;
  top: 2px;
  text-align: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 6px -2px #111;
  padding: 5px 0px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
}

.btn-color-mode-switch
  input[type="checkbox"]:checked
  + label.btn-color-mode-switch-inner {
  background-color: #d3d3d3;
  cursor: pointer;
}

.btn-color-mode-switch
  input[type="checkbox"]:checked
  + label.btn-color-mode-switch-inner:after {
  content: attr(data-on);
  left: 68px;
}

.btn-color-mode-switch
  input[type="checkbox"]:checked
  + label.btn-color-mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}

/* ----------------------------------Skill Toggle button start---------------------------------- */

#skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.skills {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background-color: #f0f0f0;
  margin: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.skills:hover {
  border: #f3f3f3ea solid 0.5px;
}

.skills img {
  max-width: 90%;
}

/*---------------------------------------------------------------------*/
/*SECTION 05 EDUCATION*/
/*---------------------------------------------------------------------*/

/* --------------------------------------Education Start-------------------------------------- */

#sec-26-education {
  width: 100%;
  height: auto;
  padding: 0% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sec-26-education h1 {
  width: 100%;
  text-align: center;
  margin: 40px 0px;
}

.education-layout-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 80%;
}

/* --------------------------------------Education card start-------------------------------------- */
.edu-card {
  box-sizing: border-box;
  width: 310px;
  height: 200px;
  background: rgba(217, 217, 217, 0.58);
  border: 1px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
  padding: 20px;
  color: black;
  margin: 25px;
}

.edu-card:hover {
  border: 1px solid black;
  transform: scale(1.05);
}

.edu-card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}

.edu-heading {
  font-weight: bolder;
  font-size: 15px;
  margin-bottom: 10px;
}
/* --------------------------------------Education card end-------------------------------------- */

.line {
  width: 50%; /* Set the width to 50% of the container's width */
  margin: 50px auto;

  border: #e4e4e4 0.1px solid;
}

/*---------------------------------------------------------------------*/
/*SECTION 06 CALL TO ACTION*/
/*---------------------------------------------------------------------*/

#sec-call-to-action-layout {
  width: 100%;
  height: 80vh;
  padding: 0% 10%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#ready-to-take {
  font-size: 3em;
  padding: 20px;
  text-align: center;

  line-height: normal;
}

#sec-call-to-action-layout div {
  text-align: center;

  margin-bottom: 10px;
}

/* --------------------------------------HireMe Button start-------------------------------------- */

#hire-me {
  background-color: #7d2ae8;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3em;
  transition: all 0.5s ease;
  margin-bottom: 50px;
  margin-top: 30px;
  width: 10em;
  height: 3em;
}

.hire-me-button {
  display: inline-block;
  border-radius: 7px;
  border: none;
  background: #1875ff;
  color: white;
  font-family: inherit;
  text-align: center;
  font-size: 13px;
  box-shadow: 0px 14px 56px -11px #1875ff;
  width: 10em;
  padding: 1em;
  transition: all 0.4s;
  cursor: pointer;
}

.hire-me-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.hire-me-button span:after {
  content: "Now";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.7s;
}

.hire-me-button:hover span {
  padding-right: 2.55em;
}

.hire-me-button:hover span:after {
  opacity: 4;
  right: 0;
}

/* --------------------------------------HireMe Button end-------------------------------------- */

/*---------------------------------------------------------------------*/
/*FOOTER SECTION*/
/*---------------------------------------------------------------------*/
#social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  margin-bottom: 50px;
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #000000;
  margin: 10px;
}

.social:hover {
  transform: scale(1.02);
}

.social img {
  max-width: 90%;
}

.copyright {
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 5px;
  font-size: 10px;
}
/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------- */

/* --------------------------------------Mobile View-------------------------------------- */
