html {
  scroll-behavior: smooth;
}

/* Section styling */
.career-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  height: 100vh;
  padding: 0 50px;
  box-sizing: border-box;
  gap: 60px;
  flex-wrap: wrap; /* Make layout wrap on small screens */
}

/* Content styling */
.content-career {
  flex: 1;
  max-width: 700px;
  color: white;
  text-align: left;
  margin-left: 200px;
  z-index: 2;
  position: relative;
}

.content-career h2 {
  font-size: 57px;
  font-family: 'Big Noodle';
  color: #fff;
  line-height: 60px;
}

.content-career p {
  font-size: 25px;
  color: #ddd;
  font-family: 'Big Noodle';
}

/* CTA Button */
.career-btn47 {
  display: inline-block;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 5px;
  font-family: 'Big Noodle';
  font-size: 40px;
  margin-top: 30px;
  padding: 10px 25px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 2;
  position: relative;
  text-decoration: none;
}

.career-btn47:hover {
  color: #000;
}

/* Image styling */
.image-career {
  flex: 1;
  max-width: 850px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.image-career img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Headings */
.span-txt-career {
  color: rgb(255, 255, 255);
  font-size: 40px;
}
.span-txt-career2 {
  font-size: 70px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .career-hero {
    flex-direction: column;
    text-align: center;
    gap: 100px;
    padding: 15px;
    height: auto;
  }

  .image-career {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
    order: 2;
  }

  .image-career img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .content-career {
    max-width: 100%;
    margin-left: 0;
    padding-top: 70px;
    order: 1;
    text-align: center; /* <-- Add this */
  }

  .content-career h2 {
    font-size: 70px;
    line-height: 50px;
  }

  .content-career p {
    font-size: 25px;
    line-height: 2px;
    margin: 0 auto; /* <-- Optional: to help with spacing */
  }

  .career-btn47 {
    font-size: 40px;
    padding: 10px 20px;
    margin: 20px auto 0 auto; /* <-- Center the button */
    margin-top:37px;
    display: inline-block;
    
  }

  .span-txt-career2 {
    font-size: 55px;
  }
}

/* Media query for tablets */
@media (max-width: 1024px) and (min-width: 768px) {
  .career-hero {
    flex-direction: row;
  }

  .image-career {
    max-width: 48%;
  }

  .content-career {
    max-width: 100%;
    margin-left: 0;
  }
}

/* Optional Utility Order Classes */
@media (max-width: 767px) {
  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
  .order-3 {
    order: 3;
  }
}




















































.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .card1 {
    width: 220px;
    height: 180px;
    border-radius: 10px;
    text-align: center;
    padding: 20px 10px;
    box-sizing: border-box;
    /* font-family: Arial, sans-serif; */
    font-weight: bold;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .card1:hover {
    transform: translateY(-5px);
    cursor: pointer;
  }
  
  .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  .title {
    font-size: 16px;
    color: #000;
  }
  
  .title small {
    font-weight: normal;
    font-size: 12px;
  }
  
  .underline {
    width: 50%;
    height: 5px;
    background-color: #f4bd1b;
    border-radius: 5px;
    margin: 12px auto 0;
  }
  
  /* Color Themes */
  .card1.yellow {
    background-color: #fff;
  }
  
  .card1.yellow .icon {
    background-color: #f4bd1b;
    color: white;
  }
  
  .card1.green{
      background-color: #fff;
      color: white;
  }
  .card1.green .icon{
      background-color: #90EE90;
  }
  .card1.peach {
    background-color: #fff;
  }
  
  .card1.peach .icon {
    background-color: #ff8a65;
    color: white;
  }
  
  .card1.pink {
    background-color: #fff;
  }
  
  .card1.pink .icon {
    background-color: #e57373;
    color: white;
  }
  
  .card1.purple {
    background-color: #fff;
  }
  
  .card1.purple .icon {
    background-color: #9575cd;
    color: white;
  }
  
  .card1.blue {
    background-color: #fff;
  }
  
  .card1.blue .icon {
    background-color: #29b6f6;
    color: white;
  }
  .card1.active-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
  }




  





  .job-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
  }

  .apply-btn {
    /*background-color: #2c1ed6;*/
    background-color: #2c1ed6;
    color: #fff;
    border-radius: 20px;
    padding: 6px 16px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .expand-icon {
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .expand-icon.rotate {
    transform: rotate(180deg);
  }

  .job-meta {
    gap: 15px;
  }
.jd-para{
    color: #000;
}
  .job-description {
    display: none;
    margin-top: 15px;
    /* background-color: #f9f9f9; */
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
  }

  .search-input {
    border-radius: 8px;
    padding: 14px 18px;
    border: 1px solid #ccc;
  }

  .location,
  .exp {
    color: #5a3ee2;
  }

  .job-description.show {
    display: block;
  }






   /* Modal Styles */
  /* .modal {*/
  /*  display: none;*/
  /*  position: fixed;*/
  /*  z-index: 1500;*/
  /*  left: 0;*/
  /*  top: 0;*/
  /*  width: 100%;*/
  /*  height: 100%;*/
  /*  overflow: auto;*/
  /*  background: rgba(0,0,0,0.6);*/
  /*}*/

  /*.modal-content {*/
  /*  background-color: #fff;*/
  /*  margin: 10% auto;*/
  /*  padding: 20px;*/
  /*  border-radius: 10px;*/
  /*  width: 90%;*/
  /*  max-width: 500px;*/
  /*  box-shadow: 0 4px 15px rgba(0,0,0,0.2);*/
  /*  position: relative;*/
  /*}*/

  /*.modal-header {*/
  /*  font-size: 18px;*/
  /*  margin-bottom: 15px;*/
  /*  font-weight: bold;*/
  /*}*/

  /*.modal form input,*/
  /*.modal form textarea {*/
  /*  width: 100%;*/
  /*  padding: 10px;*/
  /*  margin: 8px 0;*/
  /*  border: 1px solid #ccc;*/
  /*  border-radius: 6px;*/
  /*  font-size: 14px;*/
  /*}*/

  /*.modal form input[type="file"] {*/
  /*  padding: 5px;*/
  /*}*/

  /*.modal .close-btn-apply {*/
  /*  position: absolute;*/
  /*  top: 12px;*/
  /*  right: 16px;*/
  /*  font-size: 20px;*/
  /*  cursor: pointer;*/
  /*  color: #333;*/
  /*}*/

  /*.apply-now-btn {*/
  /*  width: 100%;*/
  /*  padding: 12px;*/
  /*  background-color: #28a745;*/
  /*  color: white;*/
  /*  border: none;*/
  /*  border-radius: 6px;*/
  /*  font-size: 16px;*/
  /*  cursor: pointer;*/
  /*}*/

  /*.apply-now-btn:hover {*/
  /*  background-color: #218838;*/
  /*}*/



/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
}

.modal-header {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.modal .close-btn-apply {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Form Styles */
.form-container {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

h2, h3 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.section {
  margin-bottom: 30px;
}

.field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.field {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
}

.field input, .field select, .field textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.tag {
  background: #007bff;
  color: white;
  padding: 3px 8px;
  border-radius: 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.tag button {
  background: none;
  border: none;
  color: white;
  margin-left: 6px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
}

.add-org-btn {
  margin-top: 10px;
  background: #28a745;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.remove-org {
  background: none;
  color: red;
  cursor: pointer;
  margin-top: 5px;
  font-size: 13px;
}

.submit-btn {
  background: #007bff;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 600px) {
  .field {
    flex: 1 1 100%;
  }
}

/*.apply-btn {*/
/*  padding: 10px 20px;*/
/*  background-color: #007bff;*/
/*  border: none;*/
/*  color: white;*/
/*  font-size: 16px;*/
/*  border-radius: 8px;*/
/*  cursor: pointer;*/
/*}*/






  














 

/* Responsive adjustments */
@media (max-width: 992px) {
  .card-container {
    justify-content: center;
    gap: 20px;
  }

  .card {
    width: 180px;
    height: auto;
    padding: 16px 8px;
  }

  .title {
    font-size: 14px;
  }

  .title small {
    font-size: 11px;
  }

  .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .modal-content {
    width: 95%;
    margin-top: 20%;
  }

  .apply-now-btn {
    font-size: 15px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .job-meta {
      margin-top: 10px;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .job-meta .apply-btn {
    padding: 6px 14px;
    font-size: 14px;
  }

  .job-meta .expand-icon {
    font-size: 18px;
  }
  .search-input {
    width: 100%;
  }

  .job-card {
    padding: 15px;
  }

  .job-description {
    font-size: 14px;
  }

  .modal-content {
    margin-top: 25%;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-left: 10px;
    margin-left: 10px;
  }

  .card-container {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    width: max-content;
  }

  .card1 {
    flex: 0 0 auto;
    width: 180px;
    scroll-snap-align: start;
  }

  .modal-content {
    width: 95%;
    margin-top: 30%;
  }

  .expand-icon {
    font-size: 18px;
  }
}


















.form-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  display: none;
}

.form-loader .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

