@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#header {
  animation: fadeIn 0.6s ease-out;
}

#bio {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.biotitle {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.biodescription_1 {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.biodescription {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #bdc1c7; /* Deep navy blue background */
  scroll-behavior: smooth;
  color: black; /* White text for better contrast */
  font-size: 16px;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 0px;
}

#header {
  display: flex;
  width: 100%;
  justify-content: space-around;
  padding: 20px 0px;
  color: #0f2942;
  background-color: #eff1f5;
  font-size: 25px; /* Darker navy blue for header */
}


@media (max-width: 600px) {
  #header {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .headeritem {
    display: none !important;
  }
}

a {
  text-decoration: none;
  color: #0f2942;
}

#resume {
  color: white;
  padding: 13px 20px;
  border-radius: 10px;
  background-color: #0f2942; /* Bright blue for resume button */
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

#resume:hover {
  background-color: #051019; /* Darker blue on hover */
}

.headeritem {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 20px;
  color: #0f2942;
  text-decoration: none;
}

.resume-text {
  font-size: 20px;
  color: white;
  text-decoration: none;
}

#biopic {
  width: 50%;
}

#bio {
  display: flex;
  padding: 50px 0px;
  width: 100%;
  justify-content: space-around;
  background-color: #ffffff;
  align-items: center;
}

@media (max-width: 600px) {
  .biotitle {
    padding: 20px 0px !important;
  }
}

#biocontent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.biotitle {
  font-family: 'Quicksand', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-display: swap;
  padding-bottom: 40px;
}



.biodescription_1 {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    width: 80%;
    padding-bottom: 10px;
    color: #4b5563; 
    font-weight: 400;
  }

.biodescription {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  width: 80%;
  padding-bottom: 10px;
  color: #4b5563; 
  font-weight: 400;
}

@media (max-width: 600px) {
  .biotitle {
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  .biodescription {
    font-size: 20px;
  }
}

#experiences {
  padding: 50px 0px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #ffffff;
}

.project {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 350px;
  gap: 10px;
  background-color: #ffffff; 
  border: 2px solid #000000; 
  border-radius: 10px;
}

.projectimage {
  border-radius: 10px;
  height: 250px;
  width: auto;
  transition: all 0.2s linear;
}

.imagebio {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

a:hover {
  color: #60a5fa; 
}

.projectimage:hover {
  transform: scale(1.1);
}

.project-image-contain {
  height: 250px;
  width: auto;
  border: solid #1d4ed8 2px; 
  overflow: hidden;
  border-radius: 10px;
}

.extra-project {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 15px;
}

#otherproject-title {
  margin-top: -2px;
}

#experience {
  padding: 100px 0px;
  background-color:#0f2942;
  width: 100%;
}

.highlighted {
  color: #2563eb; 
}

.other-titles {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

#footer {
  padding: 10px 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #0f2942; 
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.links {
  display: flex;
  gap: 20px;
}
#footer ul {
  list-style: none;
}

#experience-container-ov {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  background-color:#0f2942;
  padding-bottom: 30px;
  padding-top: 30px;
}

.experience-container {
  width: 90%;
  max-width: 90%;
  padding: 1.5rem;
  word-wrap: break-word;
  border: 1px solid #1d4ed8;
  border-radius: 12px;
  background-color: #f8fafc;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.experience-container:hover {
  transform: scale(1.05); 
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); 
}

.experience-container:active {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.experience-title {
  font-size: 40px;
  color: white;
}

.middle-gap {
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo-title {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.explogo {
  height: 50px;
  width: auto;
}


a, button, .resume-button {
  min-height: 44px;
  min-width: 44px;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
}
