.top {
    background-color: #333;
    color: white;
    padding: 108px 0;
    text-align: center;
}

.top .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}


.top h1 {
    font-size: 48px;
    margin-bottom: 20px;
    
}

.top p {
    font-size: 20px;
    margin-bottom: 30px;
    color: white;
}

.cta-button1 {
    padding: 15px 30px;
    background-color: #325bcc;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button1:hover {
    background-color: #325bcc;
}

.culture {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.culture h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.culture ul {
    list-style-type: none;
    padding: 0;
}

.culture ul li {
    font-size: 18px;
    margin: 10px 0;
}

.open-positions {
    padding: 60px 0;
    text-align: center;
}

.open-positions h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: black;
}

.job-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.job-item {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 15px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.job-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.job-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: black;
}

.job-item p {
    font-size: 16px;
    margin-bottom: 20px;
}

.how-to-apply {
    background-color: #e9ecef;
    padding: 60px 0;
    text-align: center;
}

.how-to-apply h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.how-to-apply p {
    font-size: 18px;
    margin-bottom: 30px;
}


/*********************** changes made by simrn *************************/

.logo {
    max-width: 200px;
  }
  
  .navbar {
    width: 100% !important;
    position: fixed !important;
    z-index: 999 !important;
    align-items: center;
    background: linear-gradient(to right, #a4cdc7, #00796b);;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    font-family: sans-serif;
    padding: 10px 50px;
  }
  
  .push-left {
    margin-left: auto;
  }
  
  /* Menu */
  .hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
    outline: none;
    height: 30px;
    position: relative;
    width: 30px;
    z-index: 1000;
  }
  @media screen and (max-width: 768px) {
    .hamburger {
      display: inline-block;
    }
  }
  .hamburger-line {
    background: #211277;
    height: 3px;
    position: absolute;
    left: 0;
    transition: all 0.2s ease-out;
    width: 100%;
  }
  .hamburger:hover .hamburger-line {
    background: #211277;
  }
  .hamburger-line-top {
    top: 3px;
  }
  .menu-active .hamburger-line-top {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
  }
  .hamburger-line-middle {
    top: 50%;
    transform: translatey(-50%);
  }
  .menu-active .hamburger-line-middle {
    left: 50%;
    opacity: 0;
    width: 0;
  }
  .hamburger-line-bottom {
    bottom: 3px;
  }
  .menu-active .hamburger-line-bottom {
    bottom: 50%;
    transform: rotate(-45deg) translatey(50%);
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.25s ease-in;
  }
  @media screen and (max-width: 768px) {
    .nav-menu {
      background: linear-gradient(to right, #a4cdc7, #00796b);
      flex-direction: column;
      justify-content: center;
      opacity: 0;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      transform: translatey(-100%);
      text-align: center;
    }
    .menu-active .nav-menu {
      transform: translatey(0%);
      opacity: 1;
    }
    .navbar{
      padding: 10px 20px !important;
    }
  }
  .nav-menu .menu-item a {
    color: #fff;
    display: block;
    line-height: 30px;
    margin: 0px 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
  }
  .nav-menu .menu-item a:hover {
    color: #211277;
    text-decoration: underline;
  }
  @media screen and (max-width: 768px) {
    .nav-menu .menu-item a {
      font-size: 14px;
      margin: 8px;
    }
  }
  
  .sub-nav {
    border: 1px solid #ccc;
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 5px 5px;
    list-style: none;
    width: 230px;
  }
  @media screen and (max-width: 768px) {
    .sub-nav {
      position: relative;
      width: 100%;
      display: none;
      background-color: rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }
  }
  
  .nav__link:hover + .sub-nav {
    display: block;
  }
  
  .sub-nav:hover {
    display: block;
  }
  
  .SMN_effect-2 a:before, .SMN_effect-2 a:after {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.5);
      content: '';
      -webkit-transition: -webkit-transform 0.3s;
      -moz-transition: -moz-transform 0.3s;
      transition: transform 0.3s;
      -webkit-transform: scale(0.85);
      -moz-transform: scale(0.85);
      transform: scale(0.85);
  }
  
  .SMN_effect-2 a:after {
      opacity: 0;
      -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
      -moz-transition: top 0.3s, opacity 0.3s, -moz-transform 0.3s;
      transition: top 0.3s, opacity 0.3s, transform 0.3s;
  }
  
  .SMN_effect-2 a:hover:before, .SMN_effect-2 a:hover:after, .SMN_effect-2 a:focus:before, .SMN_effect-2 a:focus:after {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1);
      background: #211277;
  }
  
  .SMN_effect-2 a:hover:after, .SMN_effect-2 a:focus:after {
      top: 0%;
      opacity: 1;
  }
  ..footer-col h1{
    
  }