
:root {
  --primary-color: #00549f;
  --secondery-color: #8ebae5;
  --white-color: #ffffff;
  --dark-color: #011930;
  --about-bg-color: #f9f9f9;
  --bg-color: #011930;

  --gray-color: #909090;
  --link-color: #404040;
  --p-color: #666262;

}



body {
    margin: 0;
    overflow-x: hidden; /* Only hide horizontal overflow to allow vertical scroll */
    background-color: #02021c;
  }
  
/*======================================
=              Hero Section            =
======================================*/



  #hero {
    background-color: #012751;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex; 
    justify-content: center;
    align-items: center; 
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
    flex-direction: column;
  }
  
  /* Canvas container acts as the background */
  #canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind hero content */
    pointer-events: none;
    /* display: none;  */
  }

  #canvas-container canvas {
    background: transparent !important;
  }
  
  
  /* Hero content overlay */
  .hero-content {
    position: relative;
    z-index: 2; /* Above the canvas */
    text-align: center;
    color: white;
    /* top: 50%;
    transform: translateY(-50%); */
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  /* Hero title and subtitle styling */
  .hero-title {
    font-size: 7rem;
    letter-spacing: -0.1rem;
    line-height: 0.8;
  }
  
  .hero-text-bold {
    color: var(--secondery-color); /* Blue color for "Computational" */
    font-weight: 700; /* Bold weight */
    font-size: 6rem;
  }
  
  .hero-subtitle {
    font-family: 'Montserrat', sans-serif; /* Or the closest font */
    font-size: 4rem; /* Adjust font size as needed */
    font-weight: 900; /* Thin weight */
    color: var(--secondery-color); /* Light color to match the example */
    text-transform: uppercase;
    margin-bottom: 0.5rem; /* Adjust spacing from "Computational" */
    line-height: 1.2; /* Adjust line-height for spacing */
  }
  
  .hero-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4d5eff;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
  }
  
  /* Responsive Adjustments */
  
  /* Medium screens (tablets) */
  @media (max-width: 992px) {
    .hero-subtitle {
      font-size: 2rem;
    }
    .hero-text-bold {
      font-size: 4rem;
    }
  }
  
  /* Small screens (phones) */
  @media (max-width: 768px) {
    .hero-subtitle {
      font-size: 1.5rem;
    }
    .hero-text-bold {
      font-size: 3rem;
    }
  }
  
  /* Extra small screens (small phones) */
  @media (max-width: 576px) {
    .hero-subtitle {
      font-size: 1.2rem;
      letter-spacing: 0.08rem;
    }
    .hero-text-bold {
      font-size: 2.5rem;
    }
  }
  