@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap");

:root {
  --dark-yellow: #f9ca24;
  --dark-black1: #111;
  --dark-black2: #222;
  --dark-black3: #333;
  --dark-whiteff: #fff;
  --dark-whitee: rgb(233, 229, 229);
  --dark-brown: #fff4;
  --yellowg: #fad961;
  --orangeg: #f76b1c;
  --darkorange: #e8c202;
  

  --purple: #a64dff;
  --white: #fff;
  --grey: #e8e6fa;
  --light_purple: #b8a0f0;
  --black2: #222;
  --black3: #333;
  --grey2: #c4bfbf;
  --purpleg: #7f00ff;
  --pinkg: pink;
  --darkpurple: #7802c2;
}

* {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}

*::selection {
  background: var(--purple);
  color: var(--light_purple);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 1.4rem;
}

html::-webkit-scrollbar-track {
  background: var(--grey);
}

html::-webkit-scrollbar-thumb {
  background: rgb(134, 134, 134);
}

body {
  background: var(--white);
  overflow-x: hidden;
  padding-left: 35rem;
}

body.theme-dark {
  --purple: var(--dark-yellow);
  --white: var(--dark-black1);
  --grey: var(--dark-black2);
  --light_purple: var(--dark-black3);
  --black2: var(--dark-whiteff);
  --black3: var(--dark-whitee);
  --grey2: var(--dark-brown);
  --purpleg: var(--yellowg);
  --pinkg: var(--orangeg);
  --darkpurple: var(--darkorange);
}

@media (prefers-color-scheme: dark) {
  body.theme-auto {
    --purple: var(--dark-yellow);
    --white: var(--dark-black1);
    --grey: var(--dark-black2);
    --light_purple: var(--dark-black3);
    --black2: var(--dark-whiteff);
    --black3: var(--dark-whitee);
    --grey2: var(--dark-brown);
    --purpleg: var(--yellowg);
    --pinkg: var(--orangeg);
    --darkpurple: var(--darkorange);
  }
}

.select_label {
  font-size: 2rem;
}

.parallelogram {
  width: 100px;
  height: 50px;
  transform: skew(20deg);
  background: #555;
}

.bub {
  width: 130px;
  height: 130px;
  border: 1px solid #a64dff;
  box-shadow: inset 5px -5px 10px white;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(2px);
  position: absolute;
  bottom: -100px;
  /* animation: bubble 3s ease-in infinite; */
}

.bub::before {
  position: absolute;
  content: "";
  background-color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 25px;
  right: 23px;
  box-shadow: 0px 0px 20px white;
}

.bub.a {
  left: 10%;
  animation: bubble 2s ease-in 1s infinite;
}

.bub.b {
  left: 20%;
  animation: bubble 1.5s ease-in 1.4s infinite;
}

.bub.c {
  left: 28%;
  animation: bubble 5s ease-in 3.8s infinite;
}

.bub.d {
  left: 40%;
  animation: bubble 1.8s ease-in .5s infinite;
}

.bub.e {
  left: 75%;
  animation: bubble 2.3s ease-in 2.5s infinite;
}

.bub.f {
  left: 50%;
  animation: bubble 2.5s ease-in 3s infinite;
}

.bub.g {
  left: 35%;
  animation: bubble 4s ease-in 2s infinite;
}

.bub.h {
  left: 39%;
  animation: bubble 3.3s ease-in .32s infinite;
}

.bub.i {
  left: 83%;
  animation: bubble 1.9s ease-in .89s infinite;
}

@keyframes bubble {
  0% {
    opacity: 0;
  }
  10%,
  93% {
    opacity: 1;
  }
  100% {
    transform: translate(90px, -700px);
    display: none;
  }
}

@keyframes bubble2 {
  0% {
    opacity: 0;
  }
  10%,
  93% {
    opacity: 1;
  }
  100% {
    transform: translate(90px, -700px);
    display: none;
  }
}

.circle{
  display: flex;
  width: 100%;
  height: calc(100vh - 80px);
  justify-content: center;
  align-items: center;
  padding: 0 10%;
  overflow: hidden;
}

.circle::before{
  position: absolute;
  content: '';
  height: 400px;
  width: 400px;
  border-radius: 50%;
  left: 3%;
  top: 50%;
  background: linear-gradient(45deg, var(--purpleg), var(--pinkg));
  animation: object1 9s linear infinite;
}

.circle::after{
  position: absolute;
  content: '';
  height: 200px;
  width: 200px;
  border-radius: 50%;
  left: 25%;
  top: 0%;
  background: linear-gradient(45deg, var(--purpleg), var(--pinkg));
  animation: object2 6s linear infinite;
}

@keyframes object1{
  50%{
    left: 10%;
    top:31%;
  }
}

@keyframes object2{
  50%{
    left: 32%;
    top:5%;
  }
}

.cols{
  width: 99%;
}

.cols0{
  z-index: 3;
}

div.slide-up {
  height: 270px;
  overflow:hidden;
}
div.slide-up p {
  animation: 2s slide-up;
  margin-top:0%;
  text-transform: none;
}

@keyframes slide-up {
  from {
    margin-top: 50%;
    height: 200%; 
  }

  to {
    margin-top: 0%;
    height: 180%;
  }
}

.select_label {
  display: inline-block;
  margin-right: 10px;
  color: var(--black2);
}

select {
  display: inline-block;
  border-radius: 1.8rem;
  padding: 0.4em 1.4em;
  font-size: 2rem;
  cursor: pointer;
  line-height: 12.1;
  background: var(--light_purple);
  color: var(--black2);
  box-sizing: border-box;
}

section {
  min-height: 100vh;
  padding: 1rem;
}

.btn {
  padding: 0.7rem 3rem;
  background: var(--light_purple);
  color: var(--black2);
  cursor: pointer;
  margin-top: 1rem;
  font-size: 2rem;
  border-radius: 5rem;
}

.btn i {
  padding: 0 0.5rem;
  font-size: 1.8rem;
}

.btn:hover {
  background: var(--purple);
}

.button-container {
  display: flex;
  gap: 20px; /* Adjust the value as per your preference */
}


.heading {
  text-align: center;
  margin: 0 6rem;
  font-size: 4rem;
  padding: 1rem;
  border-bottom: 0.1rem solid var(--grey2);
  color: var(--black2);
}

.heading span {
  color: var(--purple);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  width: 35rem;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
}

header .user img {
  height: 15.4rem;
  width: 15.0rem;
  border-radius: 10%;
  object-fit: cover;
  margin-bottom: 0.2rem;
  border: 0.2rem solid var(--purple);
}

header .user .name {
  font-size: 2.4rem;
  color: var(--black2);
}

header .user .post {
  font-size: 1.4rem;
  color: var(--black3);
}

header .navbar {
  width: 100%;
}

header .navbar ul {
  list-style: none;
  padding: 1rem 2rem;
}

header .navbar ul li a {
  display: block;
  padding: 1rem;
  margin: 1.0rem 0;
  background: var(--light_purple);
  color: var(--black2);
  font-size: 2rem;
  border-radius: 1.8rem;
}

header .navbar ul li a:hover {
  background: var(--purple);
}

#menu {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--light_purple);
  color: var(--black2);
  cursor: pointer;
  font-size: 2.5rem;
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: none;
}

.home {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0 15rem;
}

.home h3 {
  font-size: 2.5rem;
  color: var(--black2);
}

.home h1 {
  font-size: 5rem;
  color: var(--black2);
}

.home h1 span {
  color: var(--black2);
}

.home p {
  font-size: 2rem;
  color: var(--black3);
  padding: 1rem 0;
  text-transform: none;
}

.home p span{
  font-size: 2rem;
  color: var(--black3);
  padding: 1rem 0;
  text-transform: none;
}

.about .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.about .row .info {
  flex: 1 1 48rem;
  padding: 0rem 1rem;
  padding-left: 6rem;
}

.about .row .info h3 {
  font-size: 2rem;
  color: var(--purple);
  padding: 1rem 0;
  font-weight: normal;
  text-transform: none;
}

.about .row .info h3 span {
  color: var(--black3);
  padding: 0 0.5rem;
  text-transform: none;
}

.about .row .counter {
  flex: 1 1 48rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.about .row .counter .box {
  width: 20rem;
  background: var(--grey);
  border-radius: 20%;
  text-align: center;
  padding: 2rem;
  margin: 2rem;
}

@media screen and (max-width: 768px) {
  .box {
    width: calc(50% - 20px); /* Make the boxes 50% width minus margin on smaller screens */
    height: auto; /* Allow the height to adjust based on content */
  }
}

.about .row .counter .box span {
  font-size: 4rem;
  color: var(--purple);
  text-transform: none;
}

.about .row .counter .box h3 {
  font-size: 2rem;
  color: var(--black2);
  text-transform: none;
}

@media screen and (max-width: 768px) {
  .about .counter .box{
    display: none;
  }
}




.projects {
  text-align: left;
  padding: 10px 50px;
}

.heading {
  margin-bottom: 20px;
}

.columns-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--purple); /* Add vertical line */
  padding-bottom: 20px; /* Adjust as needed to ensure the line does not touch the content */

  margin-bottom: 40px;
}


.projects .columns-container .left-column {
  flex: 3;
  margin-right: 20px; /* Adjust as needed */
  margin-left: 10px;
}

.heading-with-text {
  font-size: 48px;
}

.custom-list li {
  color: var(--purple);
   /* Change the color to your desired color */
}

.custom-list li::marker {
  font-size: 16px; /* Change the font size to your desired size */
}

@media screen and (max-width: 768px) {
  .projects {
    margin-top: 0vh;
  }

  .KU{
    display: none;
  }
}

.projects .columns-container .left-column ul li .bullet-point {
  list-style-type: none; /* Remove default bullet point */
  font-weight: bold; /* Adjust the weight as needed */
  margin-bottom: 30px; /* Adjust the margin as needed */
}



.projects .columns-container .right-column {
  flex: 2;
  margin-left: 35px; /* Adjust as needed */
}

.right-column img {
  width: 100%;
  max-width: 400px; /* Adjust as needed */
  height: auto;
}


.projects .columns-container .left-column h2 {
  font-size: 3rem;
  color: var(--purple);
  padding: 1rem 0;
  font-weight: normal;
  text-transform: none;
}

.projects .columns-container .left-column h2 b{
  font-size: 3rem;
  color: var(--purple);
  padding: 1rem 0;
  font-weight: normal;
  text-transform: none;
}

.projects .columns-container .left-column h2 span {
  font-size: 4rem;
  color: var(--black3);
  padding: 0 0.5rem;
  text-transform: none;
}

.projects .columns-container .left-column h2 span b{
  font-size: 4rem;
  color: var(--black3);
  padding: 0 0.5rem;
  text-transform: none;
}

.projects .columns-container .left-column h3 {
  font-size: 2rem;
  color: var(--purple);
  padding: 1.5rem 0;
  font-weight: normal;
  text-transform: none;
}

.projects .columns-container .left-column h3 span {
  color: var(--black3);
  padding: 0 0.5rem;
  text-transform: none;
}

.projects .columns-container .left-column h3 a{
  color: var(--purple);
  padding: 0 0.5rem;
  text-transform: none;
}
/* 

.projects .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.projects .box-container .box {
  height: 26rem;
  width: 46rem;
  border-radius: 1rem;
  margin: 2rem;
  overflow: hidden;
  cursor: pointer;
}

.projects .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.projects .box-container .box:hover img {
  transform: scale(1.2);
}
 */

/* .projects .box-container .box {
  width: 100%;
} */


/* Media query for small screens */
@media screen and (max-width: 768px) {
  .columns-container {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    flex: none;
    width: 100%;
  }
}





.collaborations .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.collaborations .row .info {
  flex: 1 1 48rem;
  padding: 2rem 1rem;
  padding-left: 6rem;
}

.collaborations .row .info h3 {
  font-size: 2rem;
  color: var(--purple);
  padding: 1rem 0;
  font-weight: normal;
}

.collaborations .row .info h3 span {
  color: var(--black3);
  padding: 0 0.5rem;
}

.collaborations .row .counter {
  flex: 1 1 48rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.collaborations .row .counter .box {
  width: 26rem;
  height: 18rem;
  background: linear-gradient(180deg, var(--grey), var(--light_purple));
  /* background: var(--grey); */
  border-radius: 4%;
  text-align: center;
  padding: 4rem;
  margin: 0.5rem;
}

@media screen and (max-width: 768px) {
  .box {
    width: calc(50% - 20px); /* Make the boxes 50% width minus margin on smaller screens */
    height: auto; /* Allow the height to adjust based on content */
  }
}

.collaborations .row .counter .box span {
  font-size: 4rem;
  color: var(--darkpurple);
}

.collaborations .row .counter .box h3 {
  font-size: 2.5rem;
  color: var(--black2);
}

.education .box-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 0rem 0;
  padding-left: 2rem;
}

.education .box-container .box {
  width: 32rem;
  margin: 10px 10px; /* vertical */
  padding-left: 1rem;
  border-left: 0.2rem solid var(--black2);
  position: relative;
}

.education .box-container .box span {
  font-size: 1.7rem;
  background: var(--grey);
  color: var(--black2);
  border-radius: 5rem;
  padding: 0.5rem 2.5rem;
}

.education .box-container .box h3 {
  font-size: 2.2rem;
  color: var(--black2);
  padding-top: 1.5rem;
}

.education .box-container .box p {
  font-size: 1.5rem;
  color: var(--black3);
  padding: 1rem 0;
}


.education .box-container .box i {
  position: absolute;
  top: -1.5rem;
  left: -2.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  color: var(--black2);
  background: var(--purple);
  display: inline-block;
}

.education .box-container .box i:hover {
  animation: rotate-btn .5s linear 1;
  -webkit-animation: rotate-btn .5s linear 1;
}

@media screen and (max-width: 768px) {
  .education {
    margin-top: -140px;
  }

}

@keyframes rotate-btn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.portfolio .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0rem 0;
}

.portfolio .box-container .box {
  height: 18;
  width: 43.5rem;
  border-radius: 1rem;
  margin: 0.2rem;
  overflow: hidden;
  cursor: pointer;
}

.portfolio .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit:contain;
}

.portfolio .box-container .box:hover img {
  transform: scale(1.2);
}

.collaborations .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.collaborations .box-container .box {
  height: 26rem;
  width: 46rem;
  border-radius: 1rem;
  margin: 2rem;
  overflow: hidden;
  cursor: pointer;
}

.collaborations .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.collaborations .box-container .box:hover img {
  transform: scale(1.2);
}

.box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.collaborations .box-container .box {
  height: 26rem;
  width: 46rem;
  border-radius: 1rem;
  margin: 2rem;
  overflow: hidden;
  cursor: pointer;
}

.collaborations .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.collaborations .box-container .box:hover img {
  transform: scale(1.2);
}

.contact{
  padding: 50px;
}
.contact .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact .row .content {
  flex: 1 1 30rem;
  padding: 4rem;
  padding-bottom: 0;
  margin-right: 20px;
}

.contact .row form {
  flex: 1 1 45rem;
  padding: 2rem;
  margin: 2rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 600px) {
  .form .box {
    width: calc(100% - 10px); /* Adjust width for smaller screens */
  }
}

.contact .row form .box {
  padding: 1.5rem;
  margin: 1rem 0;
  background: var(--grey);
  color: var(--black2);
  text-transform: none;
  font-size: 1.7rem;
  width: 100%;
  border-radius: 2rem;
}

.contact .row form .box::placeholder {
  text-transform: capitalize;
}

.contact .row form .message {
  height: 15rem;
  resize: none;
}

.contact .row .content .title {
  text-transform: uppercase;
  color: var(--black2);
  font-size: 3rem;
  padding-bottom: 2rem;
}

.contact .row .content .info h3 {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: var(--black3);
  padding: 1rem 0;
  font-weight: normal;
}

.contact .row .content .info h3 i {
  padding-right: 1rem;
  color: var(--purple);
}

@media screen and (min-width: 768px) {
  .wrapper{
    display: none;
  }
}

/* .contact .row .content .info h3 i a{
  color: inherit;
} */

.top {
  position: fixed;
  bottom: 7.5rem;
  right: 2rem;
  z-index: 100;
  display: none;
}

/* media queries  */

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }

  .home {
    padding: 1rem 4rem;
  }
}

@media (max-width: 991px) {
  header {
    left: -120%;
  }

  #menu {
    display: block;
  }

  header.toggle {
    left: 0%;
  }

  body {
    padding: 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 400px) {
  header {
    width: 100vw;
  }

  .heading {
    margin: 0 3rem;
  }

  .about .row .counter .box {
    width: 100%;
  }

  .collaborations .row .counter .box {
    width: 100%;
  }

  @media screen and (max-width: 768px) {
    .box {
      width: calc(50% - 40px); /* Adjust the width for smaller screens */
      height: 200px; /* You can adjust this value as needed */
      margin: 20px;
    }
  }

  .education .box-container .box {
    width: 100%;
  }




  .portfolio .box-container .box {
    width: 100%;
  }

  .contact .row form {
    margin: 3rem 0;
  }

  
}


.wrapper {
	display: grid;
	place-items: center;
	height: 20vh;
}

@media screen and (max-width: 768px) {
  .wrapper {
    height: 50vh;
  }
}
.text-area span {
	display: inline-block;
	margin: 0 15px;
	border-radius: 10px;
	width: 80px;
	height: 80px;
	background: var(--white);
	text-align: center;
	color: var(--black2);
	opacity: 0;
	transform: translate(0, -100px) rotate(360deg) scale(0.5);
	animation: animate 5s forwards;
	transition: all .6s ease;
}
.text-area span i {
	font-size: 40px;
	line-height: 80px;
}
.text-area span:hover {
	background: #262626;
}
.text-area span:hover i {
	color: #fff;
}
.text-area span:nth-of-type(2) {
	animation-delay: .1s;
}
.text-area span:nth-of-type(3) {
	animation-delay: .2s;
}
.text-area span:nth-of-type(4) {
	animation-delay: .3s;
}
.text-area span:nth-of-type(5) {
	animation-delay: .4s;
}
.text-area span:nth-of-type(6) {
	animation-delay: .5s;
}
@keyframes animate {
	30% {
		transform: translate(0, -50px) rotate(180deg) scale(1);
	}
	60% {
		transform: translate(0, 20px) scale(.8) rotate(0deg);
	}
	100% {
		transform: translate(0) scale(1) rotate(0deg);
		opacity: 1;
	}
}



