/* Body */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');



body {
  margin: 0;
  background-color:#FCFCFC;
  padding-left: 0em;
  padding-right: 0em;
  /* overflow-x: hidden; */
  width: 100vw;
}


html, body {
  /* overflow-x: hidden; */
}
/* Sections, Divs, Containers */

.container {
  max-width: 100%;
  margin: 0 ; 
  
  padding: 0;

  
}

#footer-text {
  font-size: 0.8rem;
  color: #555; /* Set a consistent color */
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 0.5em;
  margin-bottom: 1.5em; /* Remove bottom margin if not needed */
  text-align: center; /* Align text to the left */
}

.figma-embed-container iframe {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 500px; /* You can increase or decrease this if needed */
}

.section {
  padding: 0.5em;
  margin:0.5em;
}

#future-considerations {
  margin-top: 50px;
}

.solutions-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.solution-item {
  display: flex;
  align-items: center;
}

#solution-text {
  text-align: center;
  margin: 2.5em 0;
  font-size: 1.2rem;
  color: #0C254F;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

/* Align checkmark slightly higher */
.checkmark {
  color: #0C254F; /* BMO blue, not rebellious green */
  font-size: 20px;
  margin-right: 10px;
  position: relative;
  top: -2px; /* adjusts vertical alignment */
  font-weight: 900;
}


 
/* Text */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 900; 
  color: #0C254F;
}
  
 
p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400; 
  font-size: 1rem;
  color: #0e0e0e;
  line-height: 1.6;
  margin-bottom: 25px;
}


h2 {
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 40px;
}

h3 {
  font-size: 22px;
  margin-bottom: 25px;
  margin-top: 35px;
}

.centered-text {
  text-align: center;
  margin: 30px 0;
  font-size: 1.1rem;
}

#centered-text-1 {
  text-align: center;
  margin: 2.5em;
  font-size: 1.2rem;
  color:#0C254F;
  font-weight:700;
}



.section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.section p {
  font-size: 1rem;
  
}

/* Images */



.problem-image,
.secondary-research-image {
  max-width: 70%; 
  height: auto;
  border-radius: 8px;
  margin: 30px 0; 
}

#design-outcome .secondary-research-image {
  max-width: 50%;
}

.problem-image-container {
  text-align: center; 
  margin-top: 20px;  
}
  
    
.secondary-research-image-container {
  text-align: center; 
  margin-top: 20px;  
}

.centered-image {
  display: flex;
  justify-content: center;
 
}

.centered-image img {
  max-width: 60%;
  height: auto;

}

    
/* Landing Section */

  .landing-content img {
  max-width: 50%;
  height: auto;
}
  

  
.column {
  width: 100%;
  margin-bottom: 20px;
}

.landing-page {
    background-color: #0C254F;
    height: 100vh;
    display: flex;
    padding: 1em;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

.left-column p{
  color: white;
}

.landing-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
  }

.landing-title {
  /* margin-top: 20px; */
  text-align: left; 
}

.landing-title h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  color: white;
  font-weight : 700; 
  margin: 0;
  text-align: left; 
}

.columns {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensures vertical alignment */
    width: 100%;
    margin-top: 20px;
    gap: 2em;
  }

#landing-section {
background-color: #0C254F;
color: white; 
padding: 50px 0; 
}

.column {
    width: 48%;
  }

  .left-column {
    text-align: left;
  }

  .right-column {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .right-column img {
    max-width: 100%;
    height: auto;
  }

.column p {
  margin: 5px 0;
  font-size: 1rem;
  color: white;
}

.left-column .view-prototype {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #FAB077;
  color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.left-column .view-prototype:hover {
  background-color: #ffffff;
  color: #000000;
  transform: scale(1.1);
}



/* More Projects */
.more-projects {
  margin-top: 60px;
  padding: 40px 0;
}

.project-cards {
  display: flex; /* Make it a flex container */
  justify-content: center; /* Center cards horizontally */
  flex-wrap: wrap; /* Allow wrapping if there are multiple cards */
  gap: 20px; /* Optional: Adds spacing between cards */
  margin-top: 30px;

}

.project-card {
  width: 20%;
  margin-bottom: 20px;
  background-color:#ffffff ;
  text-align: left; 
  border-radius: 5px;
  transition: transform 0.3s ease;
  padding:1em;
}


.image-container {
  text-align: center;
  margin-bottom: 10px; /* Optional spacing below the image */
}

#moreworkimg {
  max-width: 50%;
  height: auto;
  display: inline-block;
}


/* "Thanks" */
.text-center.mt-4 {
margin: 50px 0;
font-size: 1.2rem;
}

/* Progress Bar */
.progress-bar-section {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background-color: #FCFCFC;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* Centralizing Progress Icons */
.progress-icons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  flex-wrap: wrap;
}

/* Progress Icon Styles */
.progress-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin: 5px; /* reduced margin between items */
}

.progress-icon .icon-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;         /* Makes it circular */
  background-color: #0C254F;  /* Blue background */
  color: white;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Legend Text */
.progress-icon .legend {
  font-size: 0.85rem; /* slightly smaller font */
  color: #333;
}

/* Hover Effect */
.progress-icon:hover .icon-number {
  background-color: #FAB077;
  color:#333;
}

/* Remove connecting lines if not needed */
.progress-icons .progress-icon:not(:last-child)::after {
  display: none;
}

/* Smooth Scroll */

html {
  scroll-behavior: smooth;
}


/* More Projects */

.more-projects {
  text-align: center; 
  margin-top: 40px; 
}

.more-projects h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.project-cards {
  display: flex; 
  justify-content: center; 
  gap: 20px; 
}

#rentit,#classtrackr {
  color:#193578;
  font-family: Roboto;
}


.project-card img {
  width: 100%; 
  height: auto;
}

.project-info {
  padding: 10px;
  border-radius: 5px;
}

.project-info h3 {
  font-size: 1.2rem;
  margin: 0;
}

.project-info p {
  font-size: 1rem;
}

#morework{
  color:#193578;
  font-family: Roboto;
}


/* Links */

a:hover, a:focus, a:active {
  text-decoration: none;
}



/* Navbar */


.navbar {
  top: 0;
  padding: 0%;
  height:4.5em;
  width: 100% ;
  z-index:1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15em;
  padding-right: 15em;
  background-color:#0C254F;
}

.navbar .nav-link {
  margin: 0;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 3em;
  color: white;
  border-radius: 0em 0em 3em 3em;
  font-family: "Roboto";
  margin-left: 1.8em;
  font-weight: 450;
}


.navbar .nav-link:hover {
  background-color: #FAB077;
  border-radius: 0em 0em 3em 3em;
  color: #333;
}


.navbar-brand {
  font-family: "Roboto";
  color: white;
  font-size: 3em;
  margin:0;
  padding: .25rem .75rem;
  font-weight: 900;
  
}


.navbar-brand:hover {
  color: white;
}


/* Thanks */

.text-center p {
  font-family: "Roboto";
  font-size: 1.3em;
  color: #0C254F;
  
}



/* Footer */

.footer-icon {
  margin: 0em;
  display: inline-block; 
  width: 3em; 
  text-align: center;
  line-height: 3em;
  color: #ff9966;
  border-radius: 3em 3em 0em 0em;
  font-family: "Roboto";
  height:4em;
  padding: 0.5em;
  margin-right: 1em;
  transition: transform 0.3s ease;
  font-size: 0.8em; 
}


.footer-icon:last-child {
  margin-right: 0; 
}


.footer-icon:hover {
  background-color: #85A5E1;
  border-radius: 3em 3em 0em 0em;
  color: white;
  padding: 0.5em; 
  transform: scale(1.1);
}



/* Scroll-To-Top */

.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 40px; 
  right: 40px; 
  color: rgb(240, 240, 240);
  padding: 0.6em; 
  border-radius: 50%;
  width: 50px; 
  height: 50px; 
  text-align: center;
  cursor: pointer;
  justify-content: center; 
  align-items: center; 
  background-color:#f86f72; 
}


.scroll-to-top:hover {
  background-color: #85A5E1; 
  color: white;
  border: none; 
}


/* Transitions */

.navbar-brand,
.nav-link,
.btn-primary {
  transition: transform 0.3s ease;
}


.navbar-brand:hover,
.nav-link:hover,
.btn-primary:hover{
  transform: scale(1.1);
}


.project-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);

  }



/* Collapsed Navbar */

@media (max-width: 992px) {

  .navbar {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .navbar-collapse {
    background-color: #0C254F;
    width: 100%;
    margin: 0 auto; 
    text-align: center; 
  }

  .navbar-nav .nav-item {
    display: block; 
    margin: 0 auto;
    width: 100%;
   
  }

  .navbar-nav .nav-link {
    width: 100%; 
    margin-left: 0; 
  }

  .navbar-nav .nav-link:hover {
    background-color:#efeeee; 
    color: #000000;
  }

  .navbar-toggler {
    border: none;
    border-radius: 0;
  }

 
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
  
  
  
  .navbar-toggler:hover .navbar-toggler-icon,
  .navbar-toggler:focus .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23193578' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  button:focus {
    outline: none;
  }
  
}



/* Responsiveness */

@media only screen and (min-width: 2100px){
  .navbar {
    padding-left: 15em;
    padding-right: 15em;
  }


  .container {
    width: 100%;
    padding:12em;
   
  }

  .landing-content img {
    max-width: 50%;
  }

  .progress-icons .progress-icon:not(:last-child)::after {
    right: -40px;
    width: 60px;
  }

  .project-card {
    width: 26%;
  }

  .problem-image {
    max-width: 30%;
  }
 
  .secondary-research-image {
    max-width: 43%;
  }

  .secondary-research-image-1 {
    max-width: 60%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-2 {
    max-width: 70%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-3 {
    max-width: 70%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-4 {
    max-width: 40%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-5 {
    max-width: 50%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }


  .secondary-research-image-6 {
    max-width: 100%; 
    height: auto;
    border-radius: 8px;
    margin-left: -2em; 
    display: flex;
    justify-content: left;
  }

  .secondary-research-image-7 {
    max-width: 70%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }


  .secondary-research-image-7a {
    max-width: 70%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-7b {
    max-width: 80%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }
 
}

@media only screen and (min-width: 1600px)and (max-width: 2100px) {
  .navbar {
    padding-left: 15em;
    padding-right: 15em;
  }
 
}

@media only screen and (min-width: 1200px)and (max-width: 1600px) {

  .navbar {
    padding-left: 8em;
    padding-right: 8em;
  }

}

@media (min-width: 992px)and (max-width: 1200px){
  .navbar {
    padding-left: 5em;
    padding-right: 5em;
  }

}

@media (min-width: 768px) and (max-width: 992px) {
  .navbar {
      padding-left: 4em;
      padding-right: 4em;
    }

}
  
@media (min-width: 600px) and (max-width: 768px) {
 
  .navbar {
    padding-left: 4em;
    padding-right: 4em;
  }

  .contact-icons{
    justify-content:center;
  }

  .secondary-research-image-8 {
    max-width: 50%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-9{
    max-width: 50%;
    padding-bottom:1.5em;
    margin-bottom:1em;
    margin-top:1.5em;
    padding-top:0;
  }
}




@media (max-width: 600px) {

  body {
    margin: 0;
    padding-left: 0em;
    padding-right: 0em;
    /* overflow-x: hidden; */
    width: 100vw;
  }

  .navbar {
    padding-left: 1em;
    padding-right: 1em;
    
  }

  .contact-icons{
    justify-content:center;
  }

  .secondary-research-image-8 {
    max-width: 100%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-9{
    max-width: 100%;
    padding-bottom:1.5em;
    margin-bottom:1em;
    margin-top:1.5em;
    padding-top:0;
  }

  .secondary-research-image-7b {
    max-width: 110%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
    margin-left: -4em;
  }

}


/* Tablet (iPad) styles */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 100%;
    padding:4em;

  }

  .right-column img {
    max-width: 80%;
    height: auto;
}
  .secondary-research-image-8 {
    max-width: 60%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-9{
    max-width: 60%;
    padding-bottom:1.5em;
    margin-bottom:1em;
    margin-top:1.5em;
    padding-top:0;
  }
  .columns {
    flex-direction: row;
  }

  .column {
    width: 48%;
  }

  .progress-icons {
    flex-wrap: nowrap;
  }

  .progress-icon {
    margin: 0 10px;
  }

  .progress-icons .progress-icon:not(:last-child)::after {
    display: block;
    right: -30px;
    width: 40px;
  }

  .project-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .project-card {
    width: 30%;
    border-radius: 2em;
  }


 


  .progress-icons {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 8px;
    gap: 0;
  }

  .section p {
    font-size: 0.8rem;
}

  .progress-icon {
    flex: 1;
    max-width: none;
    margin: 0;
  }

  .progress-icon .icon-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin-bottom: 3px;
  }

  .progress-icon .legend {
    font-size: 0.6em;
    word-break: break-word;
  }
  
  .landing-title h1 {
    font-size: 1.8rem;
  }

  .column p {
    font-size: 0.8rem;
  }

  .progress-icon .icon-number {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .left-column .view-prototype {
    font-size: 0.8rem;
  }

 

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  #centered-text-1 {
    text-align: center;
    margin: 0;
    font-size: 1.2rem;
    color: #0C254F;
    font-weight: 700;
}


.section h2 {
  font-size: 1.5rem; 
  margin-bottom: 15px;
  
}
  .secondary-research-image {
    max-width: 95%;
  }
    
  .secondary-research-image-1 {
    max-width: 60%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }
  
  .secondary-research-image-2 {
    max-width: 60%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:1.5em;
    padding-top:1.5em;
  }
  .problem-image, .secondary-research-image {
    max-width: 40%;
  
}


  #centered-text-1 {
      
      font-size: 1rem;
      
  }
  
  .secondary-research-image-3 {
    max-width: 80%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:1.5em;
    padding-top:1.5em;
  }
  
  .secondary-research-image-4 {
    max-width: 50%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:1.5em;
    padding-top:1.5em;
  }

  #solution-text {
    text-align: center;
    margin: 0em 0;
    font-size: 0.7rem;
    color: #0C254F;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.solutions-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
 
  flex-wrap: wrap;
}
  
  .secondary-research-image-5 {
    max-width: 30%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }
  
  .secondary-research-image-6 {
    max-width: 100%; 
    height: auto;
    border-radius: 8px;
    margin-left: -1em; 
    display: flex;
    justify-content: left;
  }


  
  .figma-embed-container {
    position: relative;
    width: 100%;
    max-width: 50%;   /* Controls max width of the prototype */
    height: 450px;      /* Visible height */
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .secondary-research-image-7 {
    max-width: 90%;
    padding-bottom:1em;
    margin-bottom:1em;
    margin-top:1em;
    padding-top:1em;

  }

  .secondary-research-image-7a {
    max-width: 70%;
    padding-bottom:1em;
    margin-bottom:0.5em;
    margin-top:0.5em;
    padding-top:1em;
   
  }

  .secondary-research-image-7b {
    max-width: 80%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .project-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
  }

  .project-card {
    width: 100%;
    max-width: 400px;
  }

  .more-projects h2 {
    font-size: 1.5em;
  }

  .project-info h3 {
    font-size: 1rem;
  }

  .project-info p {
    font-size: 0.9rem;
  }

}


/* Laptop/Desktop styles */
@media (min-width: 1025px) {
  .container {
    width: 120%;
   padding:5em;
    
   
  }

  .landing-content img {
    max-width: 120%;
    padding-left:10em;
    
  }

  .secondary-research-image-7a {
    max-width: 90%;
    padding-bottom:1em;
    margin-bottom:0.5em;
    margin-top:0.5em;
    padding-top:1em;
   
  }

  .secondary-research-image-7b {
    max-width: 100%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }


  .landing-title h1 {
    padding-bottom: 1em;
    
  }
  .progress-icons .progress-icon:not(:last-child)::after {
    right: -40px;
    width: 60px;
  }

  .project-card {
    width: 26%;
  }

  .problem-image {
    max-width: 40%;
  }
 
  .secondary-research-image {
    max-width: 30%;
  }

  .secondary-research-image-1 {
    max-width: 35%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-2 {
    max-width: 70%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-3 {
    max-width: 70%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-4 {
    max-width: 40%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-5 {
    max-width: 50%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }


  .secondary-research-image-6 {
    max-width: 80%; 
    height: auto;
    border-radius: 8px;
 
    display: flex;
    justify-content: left;
  }

  .secondary-research-image-7 {
    max-width: 100%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-8 {
    max-width: 50%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-9{
    max-width: 50%;
    padding-bottom:1.5em;
    margin-bottom:1em;
    margin-top:1.5em;
    padding-top:0;
  }

}




/* Mobile-specific adjustments */

@media (max-width: 767px) {


  .columns {
    flex-direction: column-reverse; /* Shows image above text */
    align-items: center;
    text-align: center;
    gap: 0rem;
  }

  .landing-page {
    padding: 1rem 0.5rem;
  }

  .landing-title h1 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .column p {
    font-size: 0.85rem;
    margin: 0.3rem 0;
  }

  .left-column .view-prototype {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
  }

  /* .centered-image {
 
    margin-top: 0.2rem;
  } */

  .centered-image img {
    max-width: 30%;
  }

  .landing-title h1 {
    font-size: 1.2rem;
  }

  .column {
    width: 95%;
    /* margin-top:0.5em; */
}
  .column p {
    font-size: 0.7rem;
  }

  .columns{
    margin-top: 0;
  }

  .left-column .view-prototype {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }

  
  .landing-title h1 {
    font-size: 1.3rem;
  }

  .column p {
    font-size: 0.85rem;
  }

  .left-column .view-prototype {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

 

  
  
    
  
  


  /* Progress Bar */
  .progress-bar-section {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background-color: #ECF7FC;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  

  .progress-icons {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 8px;
    gap: 0;
  }

  .section p {
    font-size: 0.9rem;
}

  .progress-icon {
    flex: 1;
    max-width: none;
    margin: 0;
  }

  .progress-icon .icon-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin-bottom: 3px;
  }

  .progress-icon .legend {
    font-size: 0.6em;
    word-break: break-word;
  }
  
  .landing-title h1 {
    font-size: 1.8rem;
  }

  .column p {
    font-size: 0.9rem;
  }

  .progress-icon .icon-number {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .left-column .view-prototype {
    font-size: 0.8rem;
  }

 

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  #centered-text-1 {
    text-align: center;
    margin: 0;
    font-size: 1.2rem;
    color: #0C254F;
    font-weight: 700;
}


.section h2 {
  font-size: 1.5rem; 
  margin-bottom: 15px;
  
}
  .secondary-research-image {
    max-width: 95%;
  }
    
  .secondary-research-image-1 {
    max-width: 70%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }
  
  .secondary-research-image-2 {
    max-width: 90%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:1.5em;
    padding-top:1.5em;
  }
  .problem-image, .secondary-research-image {
    max-width: 70%;
  
}


  #centered-text-1 {
      
      font-size: 1rem;
      
  }
  
  .secondary-research-image-3 {
    max-width: 100%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:1.5em;
    padding-top:1.5em;
  }
  
  .secondary-research-image-4 {
    max-width: 70%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:1.5em;
    padding-top:1.5em;
  }

  #solution-text {
    text-align: center;
    margin: 0em 0;
    font-size: 0.7rem;
    color: #0C254F;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.solutions-row {
  display: flex
;
  justify-content: left;
  gap: 10px;
  margin-top: 20px;
  margin-left: 30px;
  flex-wrap: wrap;
}
  
  .secondary-research-image-5 {
    max-width: 30%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }
  
  .secondary-research-image-6 {
    max-width: 105%; 
    height: auto;
    border-radius: 8px;
    display: flex;
    justify-content: left;
  }
  

  .figma-embed-container {
    position: relative;
    width: 100%;
    max-width: 100%;   /* Controls max width of the prototype */
    height: 450px;      /* Visible height */
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  .secondary-research-image-7 {
    max-width: 100%;
    padding-bottom:1em;
    margin-bottom:0.5em;
    margin-top:0.5em;
    padding-top:1em;
   
  }

  .secondary-research-image-7a {
    max-width: 90%;
    padding-bottom:1em;
    margin-bottom:0.5em;
    margin-top:0.5em;
    padding-top:1em;
   
  }
  .secondary-research-image-7b {
    max-width: 120%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
    margin-left: -4em;
  }

  .project-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
  }

  .project-card {
    width: 100%;
    max-width: 400px;
  }

  .more-projects h2 {
    font-size: 1.5em;
  }

  .project-info h3 {
    font-size: 1rem;
  }

  .project-info p {
    font-size: 0.9rem;
  }

  .mt-5{
    margin-bottom: 4em;
  }

}


  
@media (max-width: 450px) {

  .centered-image img {
    max-width: 50%;
  }

}


@media (max-width: 600px) {

  body {
    margin: 0;
    padding-left: 0em;
    padding-right: 0em;
    /* overflow-x: hidden; */
    width: 100vw;
  }

  .navbar {
    padding-left: 1em;
    padding-right: 1em;
   
  }

  .contact-icons{
    justify-content:center;
  }

  .secondary-research-image-8 {
    max-width: 100%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
  }

  .secondary-research-image-9{
    max-width: 100%;
    padding-bottom:1.5em;
    margin-bottom:1em;
    margin-top:1.5em;
    padding-top:0;
  }

  .secondary-research-image-7b {
    max-width: 110%;
    padding-bottom:1.5em;
    margin-bottom:1.5em;
    margin-top:0;
    padding-top:0;
    margin-left: -1em;
  }

  .navbar{
    height:4em;
  }

}






 






