body {
    background-color: #081b29;

    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  h2 {
    color: rgb(255, 255, 255);
  } 

  body.light-mode {
    background-color: #f0f0f0;
    color: #000000;
  }
  body.light-mode p{
    color: #000000;
  }
  body.light-mode h2 {
    color: #000000;
  }

  body.light-mode #page-footer,
  body.light-mode #page-footer p {
    color: #000;
  }
 
  #theme-toggle {
    position: relative;
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    background-color: #2b8dd3;
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    
  }


  #page-footer {
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #7f848500;
    padding: 0px 0;
    font-size: 10px;
    animation: fadeIn 1.5s ease forwards;
    padding-top: 20px;

    
  }
  .qualifications-left h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    
  }
  
  .qualifications-left h3 {
    font-size: 13px;
    font-weight: 600;
    color: #00abf0;
    margin-top: 0;
    
    
  }
  

  .qualifications-content {
    font-size: 56;
    animation: fadeIn 1s ease forwards;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; 
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: left; 
    flex-direction: column;
    background: linear-gradient(90deg, #00abf0, #a298b4, #00abf0);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 2s linear infinite;
    
  }
  
 /* mobile first design, this checks the width and converts to desktop mode*/

  @media (min-width: 768px) {
    .qualifications-content {
      flex-direction: row; 
      gap: 40px;
      padding: 20px;
    }
  }



  .qualifications-left {
    flex: 1;
    max-width: 350px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }
  
  .qualifications-left h1,
  .qualifications-left h3 {
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }
  
  .qualifications-right {
    flex: 2;
    max-width: 600px;
  }
  
  .next-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 20px;
    animation: fadeIn 1s ease forwards;
    
    
  }

.next-section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    
}

.next-section h4 {
    font-size: 36px;
    font-weight: 400;
    color: #00abf0;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.next-section h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background-color: transparent;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.qualifications-content .table {
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #00acf031; 
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    width: 80%;
    text-align: center;
    color: white; 
    animation: fadeInLeft 2s ease forwards;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.qualifications-content .table th,
.qualifications-content .table td {
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.qualifications-content .table th {
    background-color: #0090cc;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.qualifications-content .table tr:last-child td {
    border-bottom: none;
}

.qualifications-image{
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.visit-uni-btn {
    display: block;
    margin: 15px auto 0;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #00abf0;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    
}

.visit-uni-btn:hover {
    background-color: #0086c7;
}


.home {
    height: 50vh;
    background-image: url('/images/personalphoto.png');
    animation: fadeInRight 2s ease forwards;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem
}

@media (min-width: 768px) {
  .home {
    background-position: calc(100% - 200px) center;
    padding: 0 20%;
    align-items: center;
  }
}

.home-content{
    max-width: 600px;
    animation: fadeInLeft 1s ease forwards;
    
    
}
.home-content h1{
    font-size: 56px;
    font-weight: 700;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.537);
    background: linear-gradient(90deg, #00abf0, #a298b4, #00abf0);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 2s linear infinite;
    
}
.home-content h3{
    font-size: 32px;
    font-weight: 700;
    color: #00abf0;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
.home-content p{
    font-size: 16px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.676);
}
.home-content .btn-box {
    width: 345px;
    height: 50px;

}

.btn-box a:hover {
    color: #5b389f; 
  }


.btn-box a {
    display: infline-flex;
    width: 150px;
    height: 100%;
    background: #00abf0;
    border: 3px solid #00abf0;
    border-radius: 8px;
    font-size: 19px;
    color:rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    
}

.home-sci {
    width: 170px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
  }

.home-sci a{
    justify-content: inline-flex;
    position: relative;
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #00abf0;
    border-radius: 30%;
    font-size: 10px;
    color: #00abf0;
    text-decoration: none;
    filter: brightness(0) saturate(20%) invert(45%) sepia(93%) saturate(750%) hue-rotate(160deg);
    animation: fadeIn 1.5s ease forwards;
    
}
.logo {
    width: 100px;    
    height: auto;
    position: absolute;
    top: 10px;
    left: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.navbar {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-bottom: 50px;
    animation: fadeInLeft 1s ease forwards;
  }
  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2em;
  }
  .navbar a.active {
    color: #00abf0;
    
}
  .logo {
    width: 60px;
    height: auto;
    margin-right: 20px;
  }
  .navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: right;
    
  }
  .navbar li {
    display: inline-block;
    margin: 0 10px;
    
    
  }
  .navbar a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
    margin-left: 35px;
    transition: .3s;
  }
  
  .navbar a:hover {
    color: #8d61e6; 
  }

.Interests-content {
    display: flex;
    flex-direction: column; 
    align-items: center;
    padding: 0 2em;
    
}

/*style layout for the interests showcasing my feats or whatever */
.interests-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 2em;
}

.interests-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  animation: fadeIn 1.5s ease forwards;

}
.interests-image {
  max-width: 100%;
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.interests-image2{
  max-height: 200px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.interests-text {
  max-width: 600px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.676);
}

.interests-text h2 {
  margin-bottom: 0.5em;
  
}

.interests-text p {
  line-height: 1.6;
  
}
.Interests-top h1 {
  font-size: 56px;
  text-align: center;
  background: linear-gradient(90deg, #00abf0, #a298b4, #00abf0);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 2s linear infinite;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.537);
}



.Interests-top h2{
  font-size: 16px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.537);
  animation: fadeIn 1.5s ease forwards;
}

.Interests-left {
  align-self: flex-start; 
  max-width: 800px;
}

.Interests-left h1 {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
  max-width: 400px;
  background-color: #0085c76e;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.537);
  
}

.demos-content{
  font-size: 56px;
  text-align: center;
  background: linear-gradient(90deg, #00abf0, #a298b4, #00abf0);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 2s linear infinite;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.537);
}

.demos-content h3{
  font-size: 35px;
}

.collapsible,
.collapsible2 {
    display: block;
    margin: 15px auto 0;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #00abf0;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
#myContainer button.MyMove {
  position: relative;
  display: block;
  margin: 0 auto 20px auto;
  z-index: 10;
}
#myContainer {
  width: 400px;
  height: 400px;
  position: relative;
  background: #0085c74b;
  margin: 0 auto; 
  display: flex;
  align-items: center;
  justify-content: center;
  
}


#myAnimation {
  width: 50px;
  height: 50px;
  position: absolute;
  background: rgb(63, 61, 61);
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f106;
  font-size: 16px;
}

.quote-box {
  font-size: 30px;
  padding-bottom: 30px;
  color:#ffffff;

  
}


/* animations to make the site look better because why not */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

@keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

@keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}

/* text animation */
@keyframes shine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
