header, footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100vw;
  
}


  /* =========================================================
     Typography & Utilities
     ========================================================= */
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .secondary-button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1rem;
  }
  
  /* =========================================================
     Header
     ========================================================= */

  
  .logo {
    cursor: pointer;
    
    
  }
  .logo a {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .logo a:hover {
    transform: scale(1.05);
  }
  .logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
  }

  header {
    font-family: lexend deca;
    font-weight: regular;
    display: flex; 
    justify-content: space-evenly; 
    align-items: center; 
    padding: 1rem 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    gap: 0rem;
    top: 0;
    width: 100vw
   
    
  }
  
  /* Navigation */
  header ul {
    list-style: none;
    display: flex;
    /* gap between header */
    gap: 0px;
    /* margin-right: 95px; */
  }

  header ul li{
    margin-top: 5px;
    margin-right: 200px;
  }
/*   
  header a{
    gap: 686px;
  } */

  header ul li a {
    font-size: 19px;
    gap: 100px;
   
  }
  header ul li a:hover {
    color: #36c3ff;
  }
  
  /* CTA Buttons in Header */
  header .wwu-button {     
    font-weight: bold;
    padding: 0.5rem 1rem;
    background-color: #000;     
    color: #fff;     
    border: 3px solid #fff;     
    border-radius: 30px;     
    font-size: 19px;
    cursor: pointer;     
    transition: all 0.3s ease;
    margin-right: 100px;
}  
  header .wwu-button:hover {     
    background-color: #fff;     
    color: #000;
  }
  
  header .apply-button {
    font-weight: bold;
    padding: 0.5rem 1rem;
    background-color: #fff;
    color: #000;
    border: 3px solid #fff;
    border-radius: 30px;
    font-size: 19px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 2rem;
  }
  header .apply-button:hover {
    background-color: #36c3ff;
  }


/* =========================================================
     Footer
     ========================================================= */
     footer {
      display: flex;
      flex-direction: column;
      text-align: center;
      padding-bottom: 3%;
      background-color: #000;
    }

    
    
    .footer-top-divider {
      border-top: 1px solid #333;
      margin-bottom: 40px;
    }
    
    .footer-info {
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      margin-top: 5%;
    }
    
    .footer-nav-menu {
      display: flex;
      justify-content: center;
      
    }
    .footer-nav-menu ul {
      list-style: none;
      display: flex;
      gap: 8rem;
      padding: 0%;
      margin: 0;
      font-size: 19px;
    }
    .footer-nav-menu ul li a:hover {
      color: #36c3ff;
    }
  
    .footer-middle-content{
      margin-top: -40px;
     
    }
  
    .footer-address{
      font-size: 19px;
      margin-top: 40px;
    }
      
      /* Social Icons (Footer and elsewhere) */
      .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        margin-bottom: 20px;
      }
      .social-icons a {
        width: 50px;
        height: 50px;
        background-color: #333;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 24px;
        transition: background-color 0.3s;
        text-decoration: none;
      }
      .social-icons a:hover {
        background-color: #555;
      }
      .icon img {
        width: 32px;
        height: 32px;
        transition: transform 0.3s ease;
      }
      .icon img:hover {
        transform: scale(1.1);
      }
      
    /* hides hambuger and x icon*/
      header .fa-solid{
        display: none;
    }

/********************* Responsiveness ********************************/

  @media only screen and (max-width: 1472px) {




    header{
     justify-content: space-evenly;
     align-items: center;
     gap: 70%;
     
    }
 
    .logo img {
     width: 150px;
     height: 150px;
     object-fit: cover;
   }

     
     header ul li a {
         font-size: 40px;
         margin-left: 35px;
         
     }
     header .fa-solid{
       
       display: block;
       font-size: 35px;
       
     } 
 
     header .wwu-button {     
         
       font-size: 35px;
       margin-left: 55px;
       margin-top: 25px;
     
     }  
 
     header .apply-button{
       font-size: 35px;
       margin-left: 55px;
       margin-top: 55px;
 
     }
 
     header ul{
     
       display: flex;
       flex-wrap: wrap;
       flex-direction: column;
       background: #000;
       position: fixed;
       color: #ffffff;
       top: 0;
       right: -200%;
       width: 100%;
       height: 100%;
       padding-top: 140px;
       gap: 0px;
       font-size: 20px;
       z-index: 2;
       transition: right 0.5s ease-in-out;
      
 
     }
 
     header ul li{
       display: block;
       margin: 25px;
       margin-top: 60px;
       margin: 10px 0;
       margin-left: 25px;
     }
 
     header ul .fa-solid{
     
       position: absolute;
       top: 80px;
       right: 70px;  
       cursor: pointer;
      
     }
 
 }
     
   
   @media screen and (max-width: 1010px) {
 
    
 
     
 
     header ul .fa-solid{
     
       position: absolute;
       top: 50px;
       right: 9%;  
       cursor: pointer;
      
     }
 
     /*
     Project card font sizes
     */
     .project-card .text-content h3 {
       font-size: 20px;
     }
     .project-card .text-content p {
       font-size: clamp(0.875rem, 2.5vw, 1rem);
     }
 
     .carousel {
       width: 100%;
       padding-top: 80%;
       height: 360px;
       
     }
 
   }
 
   @media only screen and (max-width: 900px){
     .project-card {
       border-radius: min(50px, 100%);
     }
     .project-card .text-content h3 {
       font-size: 15px;
     }
     .project-card .text-content p {
       font-size: clamp(0.875rem, 2.5vw, 1rem);
 
     }
 
     .carousel {
       width: 100%;
       padding-top: 80%;
       height: 360px;
       
     }
 
   }
   
   @media screen and (max-width: 800px) {
     .bottom-row, .top-row {
       flex-direction: column;
     }
     .hideImgWhenSmall {
       display: none;
     }
     .hero h1 {
       font-size: 3rem;
     }
     .hero p {
       font-size: 1.5rem;
     }
     .hero .images img {
       width: 80%;
     }
     .collaborate-section {
       text-align: center;
       margin: 0 auto;
       width: 100%;
       padding: 0; 
       padding-bottom: 15%;
     }
     .collaborate-section h2{
       font-size: 220%;
       text-align: center;
       padding: 2%;
     }
     .collaborate-section p {
       font-size: 120%;
     }
     .skills h2{
       font-size: 250%;
     }
     .skills p{
       font-size: 110%;
       text-align: center;
     }
     .skills .aboutus-button{
       font-size: 150%;
     }
     .join-us-section p{
       padding: 0 4rem;
     }
     .projects h2 {
       font-size: 290%;
     }
 
 
     
 
     .project-grid {
     flex-direction: column;
     align-items: center;
     }
     .project-card {
       margin-bottom: 2rem;
 
       border-radius: min(50px, 100%);
     }
     .questions-card h2{
       font-size: 240%;
     }
     .questions-card p{
       font-size: 140%;
     }
     .questions-card, .collaborate-section {
       width: 90%;
     }
 
     .project-card .text-content h3 {
       font-size: 35px;
     }
     .project-card .text-content p {
       font-size: 18px
     }
 
     .carousel {
       width: 100%;
       padding-top: 80%;
       height: 360px;
       
     }
     .fa-solid {
      padding-right: 5%;
     }
     
   }
   @media (max-width: 768px) {
   .carousel {
     width: 100%;
     padding-top: 60%;
     height: 360px;
   }
 
   .carousel img {
       max-width: 100%;
       height: auto;
   }
 }
 
   
   @media (max-width: 600px) {
 
     .carousel {
       width: 100%;
       padding-top: 80%;
       height: 360px;
       
     }
 
    .social-icons a {
      width: 40px;
      height: 40px;
      font-size: 20px;
      padding: 0; 
    }
    .footer-nav-menu ul {
      gap: 5.3rem;
      font-size: 0.9rem;
      
    }
    .logo img {
    width: 115px;
    height: 115px;
    object-fit: cover;
    }
   }
  
   @media only screen and (max-width: 480px) {

    header{
     
      padding-left: 5%;
    }

    .logo a {
      width: 200%;
      height: auto;
      object-fit: cover;
    }
    
     .carousel {
       padding: 0; /* Remove padding on very small screens */
       height: 300px;
     }
   
     .carousel img {
       border-radius: 35px; /* Further reduce the radius for very small screens */
     }

     header ul li a{
      font-size: 25px;
    }

    header .wwu-button{
      font-size: 25px;
      
      width: fit-content;
      
      margin-top: 2.5%;

     }

     header .apply-button{
      font-size: 25px;
      border-radius: 40px;
      width: fit-content;
      margin-top: 8%;
     }

     footer{
      text-align: center;
      
     }

     .footer-nav-menu{
      font-size: 15px;
      
    
    }

    .footer-middle-content{
      margin-top: -10px;
     
    }


     .footer-address{
      font-size: 15px;
      margin-top: -1%;
    }

   }
   @media (max-width: 400px) {
     .project-card {
       border-radius: min(50px, 100%);
     }
     .project-card .text-content {
       padding-left: 20px;
     }
 
    header ul .fa-solid{
     
       position: absolute;
       top: 40px;
      
       right: 9.5%;
       cursor: pointer;
      
 }
 
     .logo img {
       width: 80px;
       height: 80px;
       object-fit: cover;
     }
 
     .project-card .text-content h3 {
       font-size: 30px;
     }
     .project-card .text-content p {
       font-size: 15px
     }
 
   }