 /* Custom CSS to set the background height to 50% of viewport height */
 .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 12vh;
    background-color: transparent;

  }
   

  

  .navbar-toggler {
    margin-top: 6px;
  }

  /* Adjust the font size and line height of the navigation links (optional) */
  .navbar-nav .nav-link {
    font-size: 16px;
    line-height: 1.2;
  }

  /* Custom CSS to set the background color for the navbar */
  .navbar-brand img {
    /* Apply styles to the image within the .navbar-brand */
    width: 100%; /* Set a specific width */
    height: 80px; /* Keep the aspect ratio */
    padding-left: 0%;
    margin-left: 0%;
  }

/* Styling for the background image */
/* Styling for the background image */
.background-image-container {
    background-image: url("slider_bg.jpg"); /* Replace "background.jpg" with your image URL or path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  /* Styling for the search container */
  .search-container {
    padding: 50px;
    text-align: center;
    color: #fff;
  }
  
  .search-container h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .search-container form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .search-container input[type="text"],
  .search-container select {
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .search-container button {
    margin: 10px;
    padding: 10px 20px;
    background-color: #13bb54;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  /* Additional styles for your website content go here */
.newsletter {
    background-image: url("bg-new.png");  
    background-color: rgb(124, 204, 124);
    background-size: cover;
    background-position: center;
    padding: 20px;
    text-align: center;
    color: white;
    height: 35vh;
    justify-content: center;
    justify-items: center;
  }
  
  .newsletter h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .newsletter p {
    font-size: 16px;
  }
  
  .subscribe-form {
    margin-top: 20px;
  }
  
  .subscribe-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
  }
  
  .subscribe-form button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  












/* Footer styles */
.footer {
    background-image: url("city_bg.png"); /* Replace with the URL of your background image */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    display: flex;
    justify-content: space-between;
  }
  
  .footer-column {
    flex: 1;
    padding: 20px;
    color: black; /* Set the text color to white for better readability on the background image */
  }
  
  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style-type: circle;
    color: black;
    padding: 0;
  }
  
  .footer-column ul li a {
    color: black;
    margin-bottom: 5px;
  }
  
  .footer-column ul li a  .hover{
    color :#ffa;
  }
  
    /* Custom CSS */
    .job-content-wrapper {
      height: 25vh;
             border: rgb(124, 204, 124) solid  1px;
      border-radius: 10px;
      padding: 10px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
  }

  .company_logo {
      max-width: 200px;
      border-radius: 5px;
      margin-right: 20px;
      margin-top: 25px;
  }

  .position {
      flex: 1;
       margin-left: 40px;
  }

  .title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
  }

  .location {
      font-size: 18px;
      color: #777;
  }

  .salary {
      font-size: 18px;
      font-weight: bold;
  }

  .address {
      font-size: 18px;
      color: #777;
  }

  .btn-group-right {
      margin-top: 80px;
      margin-left: 20px;
      display: flex;
      height: 50px;
  }

  .btn-success {
      margin-right: 10px;
  }

  /* Media Queries */
  @media (max-width: 576px) {
      .job-content-wrapper {
          flex-direction: column;
          height: auto;
      }

      .company_logo {
          max-width: 100%;
          margin-right: 0;
          margin-bottom: 10px;
      }

      .btn-group-right {
          margin-top: 0;
          margin-left: 0;
          flex-direction: column;
      }
  }
   
  .job-content-wrapper:hover {
    box-shadow: 0 0 10px rgba(60, 163, 60, 0.5);
}
  
  /* Additional styles for your website content go here */
  

  /* login*/
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
  }
  
  .login-heading {
    text-align: center;
    padding: 10px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .button-group {
    display: flex;
    justify-content: space-between;
  }
  
  