* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
  font-size: 6vw;
}

h2 {
  font-size: 2vw;
}

body {
    margin: 0;
    height: 100%;
    font-family: "Source Sans Pro", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-color);
    
  }

  #privacyNotice{
    font-weight: bold;
    color: #203864;
    
  }

  canvas{
    display: block;
    width: 100% ; 
    height: auto ; 
  }

  .nav-toggle {
    display: none;
  }

  ul{
    list-style-type: none;
  }

nav {
    background-color: #fff;
    color: #203864;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    display: flex;
    align-items: center;
}

nav .logo img {
    height: 5vw;
    width: auto;
}

.nav__list {
   
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin:0;
    align-items: center;
    padding: 0vh 4vw;
  }
  
  .nav__link {
    color: inherit;
    text-decoration: none;
    margin-right: 50px;
    position: relative;
    font-family: "Raleway", sans-serif;
    padding: 16px 0;
    margin: 0 12px;
    letter-spacing: 1px;
    line-height: 16px;
    font-weight: 700;
    transition: color 0.1s, background-color 0.1s, padding 0.2s ease-in;
    color: #203864;
  }

  .nav__link::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 3px;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #203864;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: color 0.1s, transform 0.2s ease-out;
  }
  
  .nav__link:active::before {
    background-color: #203864;
  }
  
  .nav__link:hover::before,
  .nav__link:focus::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  @media (max-width: 800px) {
    #welcometxt {
      font-size: 2.5rem;
  }

  #slogan {
      font-size: 1.2rem;
      padding: 20px;
  }
    .navBar {
      display: flex;
      justify-content: center;
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 100;
      transform: translateX(100%);
      transition: transform 400ms cubic-bezier(0.51, 0.6, 0.54, 0.59);
      height: 100vh;
    }

  
    .nav__list {
      list-style: none;
      display: flex;
      height: 100%;
      flex-direction: column;
      justify-content: space-evenly;
      text-align: center;
      margin: 0;
      padding: 135px;
      background-color: #203864;;
      width: 100%;
    }
  
    .nav-toggle {
      display: block;
      padding: 2.3em;
      background: transparent;
      border: 0;
      cursor: pointer;
      position: fixed;
      right: 0.5rem;
      top: 1.1rem;
      /* left: 29rem; */
      z-index: 1000;
      outline: none;
    }
  
    .nav__link {
      margin: 0;
      color: #fff;
    }
  
    .nav-open {
      overflow: hidden;
    }
  
    .nav-open .navBar {
      transform: translateX(0);
      width: 100vw;
    }

    .nav-open .logo {
      display: none;
    }
  

    .nav-open .hamburger {
      transform: rotate(0.625turn);
      background-color: #fff;
    }
  
    .nav-open .hamburger::before {
      transform: rotate(90deg) translateX(-6px);
      background-color: #fff;
    }
  
    .nav-open .hamburger::after {
      opacity: 0;
    }
  
    .hamburger {
      display: block;
      position: relative;
    }
  
    .hamburger,
    .hamburger::before,
    .hamburger::after {
      background-color: #203864;
      width: 2em;
      height: 3px;
      border-radius: 1em;
      transition: transform 250ms ease-in-out;
    }
  
    .hamburger::before,
    .hamburger::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
    }
  
    .hamburger::before {
      top: 6px;
    }
  
    .hamburger::after {
      bottom: 6px;
    }
  
    .nav__item {
      color: #fff;
    }
  
    .nav__link::before {
      content: "";
      display: block;
      position: absolute;
      bottom: 3px;
      left: 0;
      height: 3px;
      width: 100%;
      background-color: #fff;
      transform-origin: right top;
      transform: scale(0, 1);
      transition: color 0.1s, transform 0.2s ease-out;
    }
  
    .nav__link:active::before {
      background-color: #fff;
    }
  
    .nav__link:hover::before,
    .nav__link:focus::before {
      transform-origin: left top;
      transform: scale(1, 1);
    }
  }

  section {
    width: 100%;
 
    margin: auto;
    align-items: center;
    /*min-height: 110vh;*/
  }
  
  .one {
    min-height: 110vh;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    
  }

  #welcometxt {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

#slogan {
    padding: 35px;
    font-family: "Courier New", monospace;
    font-size: 1.5rem;
}

  
 .section.two {
  max-width: 90%;
  max-width: 1400px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(32, 56, 100, 0.08);
}

#websiteExplanation {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #203864;
  margin-bottom: 2.5rem;
}

#stepsIntro {
  font-size: 1.4rem;
  color: #203864;
  margin: 2rem 0 1.5rem;
  font-weight: 600;
}

#steps {
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

#steps li {
  color: #203864;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

#processing {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

#fileInput {
  padding: 0.5rem;
  font-size: 1rem;
  border: 2px solid #203864;
  border-radius: 6px;
  background-color: #ffffff;
  color: #203864;
  flex: 1;
  min-width: 200px;
}

#fileInput:hover {
  border-color: rgba(32, 56, 100, 0.8);
}

#fileInput:focus {
  outline: none;
  border-color: #203864;
  box-shadow: 0 0 0 2px rgba(32, 56, 100, 0.2);
}

button {
  padding: 0.75rem 1.5rem;
  background-color: #203864;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background-color: rgba(32, 56, 100, 0.9);
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}

#error-message {
  color: #dc2626;
  margin-top: 1rem;
}

#output {
  color: #203864;
  margin-top: 1rem;
  font-weight: 500;
}

#Note {
  color: rgba(32, 56, 100, 0.8);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}


  .plots{
    justify-content: center;
    align-items: center;
    height: 90vh;  
    max-height: fit-content;
    padding: 10vh;
    margin: auto;
  }


  .growth-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 80vh;
    padding: 2rem;
   
  }

  .growth-scroll-container {
    width: 90%;
    max-width: 1200px;
    height: 70vh;
    min-height: 400px;
    overflow-x: auto;
  }


  #growthSubbox {
    min-width: 800px;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
}

#connectionsGrowth {
  height: 100%;
  width: 100%;
}

#industryChart {
  width: 90vw;   
  height: 90vh;  
}

.comapnies-chart-container{
  padding: 2rem;
  justify-content: center;
  align-items: center;
 
}

  .companies-scroll-container{
    height: 700px;
    max-height: 500px;
    overflow-y: auto;
    
  }


  .chartTitle{
   font-size: 1.2rem;
   margin: 2rem 0 1rem;
   font-weight: 600;
   text-align: center;
   color:rgb(98, 98, 98);
   
  }

  .scrollable-container {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    
  }
  
  .detailsSection{
    text-align: center;
    color:rgb(98, 98, 98);
    padding: 15px;
  }

 
  .nameList{
    padding: 2vh;
  }

  footer {
    background-color: #203864;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.footer-content {
    justify-content: space-around;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    padding: 10px;
}

.footer-sections-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-section h3 {
    color: #ddd;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #ddd;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding: 5px;
    border-top: 1px solid #203864;
    margin-top: 20px;
}

.footer-section.privacy {
  font-style: italic;
  color: #ddd;
}



html {
    scroll-behavior: smooth;
}