@charset "UTF-8";
/* CSS Document */

.button-container {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.button {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  cursor: pointer;
  padding:0.8rem 2rem;
  border-radius:6rem;
  margin:1rem;
  word-wrap: break-word;
}
a button.button{
  color:#1a41b6;
  font-size:18px;
}
button.button{
  background-color: #d9dff1;
}
a button:hover{
  background-color: #1a41b6;
}
a button.button:hover{
  color:white;
}
li{
  font-size:16px;
}

@media (max-width: 768px) {
  .button-container {
    flex-direction: column;
  }
  .button {
    margin:0.2rem;
    padding:0.5rem;
  }
  a button.button{
    font-size:14px;
    width:100%;
    padding-left:2.5rem;
  }
} 

/* ------------- #region Project Preview------------ */
.logo-animation {
  transform: translateX(-100%) rotate(-20deg);
  opacity: 1; /* Set initial opacity to 1 */
  animation: slideInLeftWithSpinAndBounce 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInLeftWithSpinAndBounce {
  0% {
    transform: translateX(-100%) rotate(-20deg);
  }
  50% {
    transform: translateX(0) rotate(360deg) scale(1.2);
  }
  75% {
    transform: translateX(0) scale(1.05);
  }
  85% {
    transform: translateX(0) scale(1.02);
  }
  95% {
    transform: translateX(0) scale(1.01);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

.project_preview_container{
  border-radius: 20px;
  padding: 6rem 4rem;
  margin-block: 40px;
  margin: 0rem 10rem;
}
.project_preview_column{
  width: 50%;
  max-width: 100%; /* Ensure the container doesn't exceed 50% of the page width */
  height: auto; /* Let the height adjust to the image's natural dimensions */
  display: flex;
  align-items: center;
  justify-content: center;
}

.project_preview_description{
  /* font-size: 18px; */
  color: #050505;
  padding-top: 1rem;
}
.projectTags{
  font-size: 16px;
  color: #ffffff;
  border-radius: 20px;
  padding: 5px 15px;
  margin-right: 5px;
}
.viewProject{
  padding: 15px 25px;
  font-size: 20px;
  border-style: solid;
  border-width: 2px;
  border-radius: 15px;
}
.viewProject-gradient-1:hover {
  background: linear-gradient(to right, #37833b, #419245);
  color: white;
}
.viewProject-gradient-2:hover {
  background: linear-gradient(to right, #1a41b6, #244dc6); 
  color: white;
}
.viewProject-gradient-3:hover {
  background: linear-gradient(to right, #efbd40, #efbd40); 
  color: white;
}
@media (min-width: 800px) {
  #moreProjectsHeader{
    display: flex;
    flex-direction: row;
  }
} 
@media (max-width: 800px) {
  #moreProjectsHeader{
    display: flex;
    flex-direction: column;
  }
  #eye_emoji{
    padding-top:1rem;
  }
} 

/* #endregion */

/* ------------ #region Resume --------------------*/
/* .resume-background{
   background: linear-gradient(to right, #4165d058, #879bd978);   
} */
.resume_header{
  color:#1a41b6;
  letter-spacing: 2px;
  margin-top:4rem;
}
.resume_title{
  font-weight:bolder;
  margin-bottom:0rem;
}
.resume_location{
  font-weight: 600;
  /* font-size:16px; */
  color:#686868;
}
#resumeIcon{
  stroke:#1a41b6;
  fill:#1a41b6;
}
.button:hover #resumeIcon{
  stroke:#ffffff;
  fill:#ffffff;
}

@media (min-width: 800px) {
  .resume-skills-div{
    padding-right:3rem;
  }
} 
@media (max-width: 800px) {
  #programming-skills-header{
    padding-top:2rem;
  }
  .resume-skills-div{
    padding-right:0rem;
  }
} 

/* #endregion */

.arrow {
  border: solid black;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.blink {
  animation: blinker 3s linear 2;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.zoom {
  padding: 50px;
  transition: transform .2s; /* Animation */
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.zoom:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.white{
  color: #ffffff;
}
.fltright{
	float: right;
    margin: 0px 0px 30px 100px;
}
.img_section{
  background-color: #ffffff;
  padding: 25px 25px;
}
.iframe_container{
  position: relative;
  width: 100%;
  padding-bottom: 50%; 
  height: 0;
}
.iframe_container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 90%;
}

/*------animated button---------------------------*/
button1 {
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
}

button1{
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

button1:after {
  content: '»';
  position: absolute;
  opacity: 0;  
  right: -50px;
  transition: 0.5s;
}

button1:hover{
  padding-right: 30px;
  padding-left:8px;
}

button1:hover:after {
  opacity: 1;
  right: 10px;
}
#takeALookBtn{
 padding:1rem 2rem;
 background-color:#e2e2e2;
 border-radius:20rem;
 border:none;
 box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
}
#takeALookBtn:hover{
  /* background: linear-gradient(to right, #ffa6a6, #de4646);  */
  background: linear-gradient(to bottom right, #ffa6a6d3, #f59d9d, #eb6a6a);
}
/* #region images -----------------------------------------*/
#imgofme{
  float: right;
}
.fade-in-image {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
/* #endregion */

/*  #region Navigation Bar----------------------------*/

/* #endregion */


/*---------------- home page----------------------------*/
#title{
  height: 100%;
  width: 100%;
}
#work{
  background-color: #ffffff;
  height: auto;
}
.videobg{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  min-height: 100%;
  background-color: #ffffff;
}
.containerbg {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#projects{
  background-color: #ffffff;
  height: auto;
  padding-top: 7em;
}
/* "Take a look" tag*/
p.center.button{
  margin-top: 90px;
}
span.projectTags{
  line-height: 2em;
}
#coverimg{
  width: 100%;
  padding: 0px 0px 0px 0px;
  opacity: 0.9;
}
/*Individual project squares----*/

  #left1{
    background-color: #df9888;
    border-radius: 20px;
    margin: 40px 0px 0px 0px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
    margin-right: 70px;
  }
  #left2{
    background-color: #85A4AF;
    border-radius: 20px;
    margin: 40px 0px 0px 0px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
    margin-right: 70px;
  }
  #right1{
    background-color: #879AC2;
    border-radius: 20px;
    margin: 40px 0px 0px 0px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
  }
  #right2{
    background-color: #555f50;
    margin: 40px 0px 0px 0px;
    border-radius: 20px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
  }
  #left1div{
    padding: 30px 70px;
  }#left2div{
    padding: 30px 70px;
  }#right1div{
    padding: 30px 70px;
  }
  #right2div{
    padding: 30px 70px;
  }


/* about page----------------------------*/
#about{
  height: auto;
  background-color: #ffffff;
}
.aboutTitle{
  /* background-color: #3153b9e7; */
  background-color: #2b53cbe7;
  border-radius: 8px;
  padding: 5px 5px;
  color: white;
  text-align: center;
}
#aboutContentLeft{
  width:60%;
}
  /*responsive two column*/
  .wrapper{
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
   
    padding: 20px 0px 60px 0px;
  }
  .left{
    flex: 1;
  }
  .right{
    flex: 1;
  }
  @media screen and (max-width: 800px) {
    .wrapper{
      display: block;
    }
    .left{
      width: 100%;
      box-sizing: border-box;
    }
    .right{
      width: 100%;
      box-sizing: border-box;
    }
    #timeline-date{
      padding:0.5rem 0px !important;
    }
  }


/* #region contact me ---------------*/
circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 125px;
  background-color:#000000;
}
.contact_icon{
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top:30px;
  width: 50%;
}
/* #endregion */
  
 /*------Real App page-----------------------------------------------------------*/
 * {
  box-sizing: border-box;
}
.row {
  display: flex;
  flex-direction: row;
}

.column-left {
  padding: 10px;
  flex: 30%;
}
.column-middle {
  padding: 10px;
  flex: 30%;
}
.column-right {
  padding: 10px;
  flex: 30%;
}

/* Responsive layout - makes a one column-layout instead of two-column layout */
@media (max-width: 800px) {
  .row {
    flex-direction: column;
  }
}
 #realapppage{
    background-color: #879AC2;
    height: auto;
    background: linear-gradient(
      to bottom,
      #F1EFEE 0%,
      #F1EFEE 9%,
      #879AC2 9%,
      #879AC2 100%
    );
  }
  #realtitle{
    color: #879AC2;
    margin-bottom:8px;
    padding-bottom: 0px;
  }
  #realcaption{
    color: #879AC2;
    margin-top: 0px;
    margin-bottom: 150px;
  }
  .real_ul{
    font-size: 19px;
    padding: 8px;
    margin-left: 20px;
  }
  .real_groupmembers{
    font-size: 16px;
    color: #1D2026;
    border-radius: 20px;
    background-color: #aab8d4;
    padding: 10px 10px;
    display: inline-block;
    margin-top: 10px;
  }
  .project_heading_padding{
    padding-top: 60px;
  }
  #real_site_map_img{
    padding-bottom: 24px;
  }
  .real_padding_top{
    padding-top: 24px;
  }


/*------footer---------------------------*/
#footer{
  height: 200px;
  margin: 7em 0em;
}


#project_heading_section{
  height: 100%;
  background-color: #F1EFEE;
}

circle:hover{
  transform: scale(1.05);
 box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


/* -----------Animations-----------  */
.slot-machine-container {
  overflow: hidden;
  position: relative;
  height: 70px; /* Adjust the height as needed */
}

.slot-machine {
  display: block;
  white-space: nowrap;
  animation: scrollText 10s linear infinite;
  /* text-align: center;  */
}

.word {
  display: block;
  padding: 5px 0;
  opacity: 0;
  position: absolute;
  left: 0;
  width: 100%;
  font-size: 26px;
  margin-top: 0;
}
.rotating-word{
  color: #5a79bb;
  /* text-shadow:1px 1px 5px #fff, 1px 1px 5px #b1bfdc; */
  font-size: 26px;
}

@keyframes scrollText {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.active {
  opacity: 1;
}

  
  /* -----------progress bar-----------  */
  .progress-bar {
    position: fixed;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #F1EFEE;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 70px;
  }
  
  .progress {
    height: 100%;
    background-color: #c5c5c5;
    width: 0;
    transition: width 0.2s ease;
  }


/* #region MOBILE ------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------- */

/* #region Work Page ----------------------------- */
@media (min-width: 800px) {
  #websiteLogoContainer {
    margin-top:10rem;
    margin-left:10rem;
  }
  #websiteLogoImg {
    width: 100%; 
  }
}
@media (max-width: 800px) {
  #websiteLogoContainer {
    margin-top:10rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  #websiteLogoImg {
    width: 50%;
    align-items: center;
  }
  #introStatement-hello {
    padding-top:0rem;
}
}
/* #endregion  ----------------------------- */

/* #region About Me Page -------------------------- */

/* About Me Info Section */
@media (min-width: 768px) {
  #aboutImg-largeScreen {
    flex: 0 0 40%;
}
  #aboutImg-smallScreen  {
    display: none;
  }
}

@media (max-width: 768px) {
  #aboutImg-largeScreen  {
    display: none;
  }
  #aboutImg-smallScreen  {
    display:contents;
  }
}
/* #endregion */

/* #region About Me - Logo Icons for mobile format */
@media (min-width: 768px) {
  #bottomLogos {
    width: 60%; 
    margin-top:2.5em;
  }
}
@media (max-width: 768px) {
  #bottomLogos {
    width: 50%;
    float:right; 
  }
}
@media (min-width: 768px) {
  #topLogos {
    width: 80%; 
  }
}
@media (max-width: 768px) {
  #topLogos {
    width: 50%; 
    float:left;
  }
}

/* image of me */
@media (min-width: 800px) {
  #imgofme {
    width: 80%; 
  }
}
@media (max-width: 800px) {
  #imgofme {
    width: 55%; 
  }
}
@media (max-width: 800px) {
  #logo-container {
    display: flex;
  }
}
/* #endregion */

/* #region Work Page  -------------------------- */
@media (min-width: 800px) {
  .projectImgDiv{
    width:50%;
  }
  #project_preview_header{
    font-size: 35px;
    display: inline-block;
    padding-top:20px;
  } 
  #project_preview_div{
    width:85%;
  }
  #project_preview_info{
    width:50%; 
    padding-left:3rem;
  }
  #projectTagsDiv{
    width:85%;
  }
  .project_preview_description{
    font-size:18px;
  }
  #mobileProjectImg{
    display:none;
  }
}
@media (max-width: 800px) {
  #takeALookBtn {
    width:70%;
    background: linear-gradient(to bottom right, #ffa6a696, #f38888a9, #de4646be);
  }
  #takeALookText{
    font-size:2.5vh;
  }
  .projectImgDiv{
    width:100%;
  }
  #project_preview_header{
    font-size:3rem;
    display: flex;
    justify-content: center;
  }
  #project_preview_info{
    width:100%; 
  }
  #project_preview_div{
    width:100%;
  }
  #projectTagsDiv{
    display: flex;  
    justify-content: center;
    flex-wrap: wrap;
  }
  .projectTags{
    white-space: nowrap;
    margin-top:1.5rem;
  }
  .viewProject{
    justify-content: center;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  }
  .project_preview_description{
    text-align:center;
    font-size:2.5rem;
    word-wrap: break-word;
  }
  #webProjectImg{
    display:none;
  }
}
/* #endregion */

/* #endregion */


/* #region Vertical Timeline -------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
}

.timeline {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 5px;
  /* background: #E94B3C; */
  background: #303030;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2.5px;
  height:80%;
}

.containerr {
  padding: 0px 60px;
  position: relative;
  background: inherit;
  width: 50%;
}

.containerr.left {
  left: 0;
}

.containerr.right {
  left: 50%;
}

.containerr .icon {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 60px;
  top: 30px;
  right: -30px;
  padding: 9px 0;
  background: #ffffff;
  border: 3.5px solid #303030;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  color: #303030;
  z-index: 1;
}
#timelineIcon1{
  background-image: url('img/About/undergrad_icon.png');
  background-size: cover;
}
#timelineIcon2{
  background-image: url('img/About/internship_icon.png');
  background-size: cover;
}
#timelineIcon3{
  background-image: url('img/About/grad_icon.png');
  background-size: cover;
}
#timelineIcon4{
  background-image: url('img/About/job_icon.png');
  background-size: cover;
}

.containerr.right .icon {
  left: -30px;
}

.containerr::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 50px;
  right: 28px;
  z-index: 1;
  border: 10px solid;
  border-color: transparent #303030 transparent transparent;
}

.containerr.right::before {
  left: 28px;
  border-color: transparent transparent transparent #303030;
}

.containerr .content {
  padding: 30px 45px;
  background: #ffffff;
  position: relative;
  border: 5px solid #eeeeee;
  border-radius: 500px 0 500px 500px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

.containerr.right .content {
  border-radius: 0 500px 500px 500px;
}

.containerr .content h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: normal;
  color: #1a41b6;
}

.containerr .content p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  color: #303030;
}

@media (max-width: 800px) {
  .timeline::after {
    left: 50px;
  }
  .containerr {
    width: 100%;
    padding-left: 90px;
    padding-right: 10px;
  }
  .containerr .content{
    padding:4rem;
  }
  .containerr.right {
    left: 0%;
  }
  .containerr.left .icon, 
  .containerr.right .icon {
    width: 45px;
    height: 45px;
    top: 37.5px;
    font-size: 18px;
    left: 30px;
  }
  .containerr.left::before{
    display:none;
  }
  .containerr.right::before {
    display:none;
  }
  .containerr.left .date,
  .containerr.right .date {
    right: auto;
    left: 15px;
    border-radius: 30px 0 0 30px;
  }
  .containerr.left .content,
  .containerr.right .content {
    border-radius: 0 500px 500px 500px;
  }
}
/* #endregion */