/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #333;
  transition: opacity 0.3s ease;
}

/* Header */
.header {
  background-color: #fff;
  color: #f47c00;
  padding: 0px 2%;
  max-height: 10vw;
  width: 100%;
  display: flex;
  justify-content: spac;
  align-items: center;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  height: 140px;
  width: 300px;
  margin-right: 15px;
}

.menu {
  margin-left: 25%;
  list-style: none;
  display: flex;
}
  .menu li {
    margin: 0 20px;
    border-bottom: 1px solid black;
  }
  
  .menu li a {
    color: #f47c00;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all .2s ease;
  }
  .menu li a:hover {
    color: #000;
  }
  
  /* Menu Toggle (Hamburger) */
  .menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
  }
  
  /* Side Menu */
  .side-menu {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    background-color: #f47c00;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    padding-top: 100px;
    z-index: 1000;
  }
  
  .side-menu nav ul {
    list-style: none;
    text-align: center;
  }
  
  .side-menu nav ul li {
    margin: 40px 0;
  }
  
  .side-menu nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    border-bottom: 1px solid black;
    transition: all .2s ease;
  }
  .side-menu nav ul li:hover a{
    color: #000;
  }
  
  .side-menu .close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }
  
  /* Open Side Menu */
  .side-menu.open {
    right: 0;
  }
  
  .side-menu.open ~ * {
    opacity: 0.5;
  }
  
  
  /* Mobile Styles */
  @media (max-width: 900px) {
    .header {
      justify-content: space-evenly; /* Adjust layout for mobile */
    }
  
    /* Show hamburger icon for small screens */
    .menu-icon {
      display: flex;
    }
  
    /* Initially hide the menu */
    .header nav ul {
      display: none;
      text-align: center;
      flex-direction: column;
      background-color: #fff;
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .header nav ul li {
      margin: 20px 0;
    }
    .header nav ul li:hover {
      color: #fff;
      padding: 0;
    }
    /* Show menu when toggled */
    .header nav ul.show {
      display: flex;
    }  
    .menu-toggle {
      display: block;
    }
  
    .menu {
      display: none;
    }
  }
  
  /* Header Section */
  .join {
    background-color: #2F6E80;
    color: #fff;
    margin-top: 20px;
    padding: 4.5vw;
    text-align: center;
  }
  .join h1 {
    font-size: 3rem;
  }
  .join p {
    font-size: 1.2rem;
  }
  
  /* Intro Section */
  .intro {
    text-align: center;
    margin: 2rem auto;
    max-width: 900px;
    font-size: 1.5rem;
  }
  .intro p {
    font-size: 1.1rem;
  }
  
  /* Job Listings Section */
  .job-listings {
    width: 100%;
    margin: 2rem auto;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
  }
  
  .job-listings h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3rem;
  }
  
  #search {
    width: 98%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  /* Job Cards */
  .job {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 10px;
    padding: 0 8%;
    border-radius: 5px;
  }
  .training {
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
    width: 400px;
    height: 120px;
    border: .5px solid #333;
    transition: .3s all ease;
  }
  .training:hover {
    background-color: #f47c00;
    color: #fff;
    width: 550px;
    border: 0.5px solid #f47c00;
    cursor: pointer;
  }
  .job-card {
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
    width: 400px;
    border: .5px solid #333;
    transition: .3s all ease;
  }
  .job-card:hover {
    background-color: #f47c00;
    color: #fff;
    border: 0.5px solid #f47c00;
    cursor: pointer;
    width: 550px;
  }
  .training h3 {
    font-size: 1.8rem;
    margin: 0 0 .5rem;
  }
  
  .job-card h3 {
    margin: 0 0 .5rem;
    font-size: 1.8rem;
  }
  
  .job-card p {
    margin: 0.25rem 0;
  }
  
  .apply-btn {
    margin-top: 0.5rem;
    background-color: #f47c00;
    color: white;
    border: none;
    padding: 1.5rem 12.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    margin-left: 33%;
    justify-content: center;
    font-size: 18px;
  }
  
  .apply-btn:hover {
    background-color: #2F6E80;
  }
    
.features {
  padding: 0 10%;
  font-size: 22px;
}

.row {
padding-left: 20px;
padding-right: 20px;
display: flex;
width: 100%;
align-items: center;
padding: 50px 0;
}

.text-col {
  flex-basis: 68%;
  margin-bottom: 20px;
}
.text-col p {
  font-size: 16px;
  margin-bottom: 30px;
  letter-spacing: .5px;
  color: #3f3f3f;
}
.img-col {
  flex-basis: 29%;
  margin-bottom: 20px;
  margin-left: 30px;
}

.img-col img {
  display: block;
  width: 90%;
  margin: auto;
}
.features h3 {
  font-size: 20px;
  color: #3f3f3f;
}
.network-list {
  margin: 30px;
}
.network-list li {
  font-family: 'montesserat';
  color: #3f3f3f;
  font-size: 16px;
  padding: 5px 0; 
  font-weight: 700;
  letter-spacing: 1px;
}
.network-list {
  column-count: 2;
}

.features h2 {
  font-size: 50px;
  font-weight: 750;
  margin-bottom: 20px;
}
.footer {
padding: 10px 5%;
background: url('../images/neural-about.jpeg');
color: #fff;
}

.footer h2 {
font-size: 18px;
font-weight: 400;
margin-bottom: 30px;
text-align: left;
}

.footer .col {
flex-basis: 100%;
flex-grow: 1;
margin-bottom: 20px;
}

.footer .col a {
display: block;
text-decoration: none;
color: #fff;
font-size: 14px;
margin-bottom: 10px;
transition: all .4s ease;
}
.footer .col a:hover {
color: #f47c00;
font-size: 18px;
transform: translateX(6px);
}
.footer-row {
display: flex;
align-items: center;
justify-content: flex-start;
}
.row-1{
display: flex;
align-items: left;
justify-content: left;
flex-direction: column;
gap: 30px;
flex-basis: 40%;
margin-right: 100px;
}
.row-1 .logo {
display: flex;
justify-content: left;
align-items: center;
border-radius: 10px;
}
.footer .row {
align-items: flex-start;
padding: 10px;
}
.footer-row-2{
background-color: #333;
padding: 5px;
color: #fff;
}
.footer-row-2 p{
text-align: center;
}
.social a{
height: 40px;
width: 40px;
color: #fffcc3;
background-color: #000;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 21px;
border-radius: 15px;
transition: .3s;
margin-right: 10px;
text-decoration: none;
}
.social a:hover{
background: #fff;
color: #000;
}
.social a:hover {
transform: translateY(-5px);
}
.copyright-txt {
font-size: 20px;
margin-top: 20px;
margin-bottom: 10px;
text-align: right;
}
  
  /* Mobile Styles */
@media (max-width: 900px) {

  
    /* Intro Section */
    .intro {
      padding: 1rem;
      font-size: 1rem;
      margin: 1rem auto;
    }
  
    /* Job Listings Section */
    .job-listings {
      width: 95%;
      padding: 1rem;
    }
  
    .job-listings h2 {
      font-size: 2rem;
    }
  
    #search {
      width: 100%;
      font-size: 0.9rem;
    }
  
    /* Job Cards */
    .job {
      flex-direction: column;
      padding: 1rem;
      text-align: center;
    }
  
    .job-card {
      padding: 1rem;
      text-align: center;
    }
  
    .job-card h3 {
      font-size: 1.5rem;
    }
  
    .apply-btn {
      width: 100%;
      padding: 0.75rem;
      font-size: 1rem;
    }
    .footer p {
        margin-top: 20px;
        font-size: 15px;
        text-align: left;
    }
  }

  @media (max-width: 480px) {
    .header {
      background-color: #fff;
      color: #f47c00;
      padding: 50px 2%;
      max-height: 15vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .logo img {
      height: 75px;
      width: 200px;
      margin-right: 15px;
    }
    

.about-banner h2 {
  font-size: 1.2rem; /* Large headline text */
  margin: 0; /* Remove default margin */
}

.about-banner p {
  font-size: .7rem; /* Slightly smaller paragraph text */
  margin: 5px 0 0; /* Space between the heading and paragraph */
}
    .apply-btn {
      margin-left: -2.5%;
    }
    .job-card {
      width: 300px;
    }
    .training {
      width: 300px;
    }
    .job-card:hover {
      background-color: #f47c00;
      color: #fff;
      border: 0.5px solid #f47c00;
      cursor: pointer;
      width: 300px;
    }
    .training:hover {
      width: 300px;
    }
    .footer-row {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
  }
  