html{
font-size: 62.5%;
}

/*index/home page css */
 h1 {
  /*font-family: "Poppins", "Inter", sans-serif;*/
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin: 20px 0;
  background: linear-gradient(31deg, #000000, #ffc400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.tab-container {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.tab-header {
  display: flex;
  background-color: #111;
}

.tab-header div {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  cursor: pointer;
  color: #eee;
  font-weight: 600;
  transition: 0.3s;
  font-size: 18px;
  border-right: 1px solid #ffd700;
}

/*.tab-header div:hover {
  background-color: #222;
}*/

.tab-header .active {
  background-color: #FFD700;
  color: #000;
}

.tab-content {
  display: none;
  padding: 30px;
  background: #fffbdc;
/*      height: 98%;*/
}

.tab-content.active {
  display: block;
}

/* Your custom vacancy card */
.vacancy-box {
  background: #000;
  color: #FFD700;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.vacancy-box h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

/*    tab element css */

.tab-container {
  max-width: 1200px;
  max-width: 1015px;
/*      height: 200vh;*/
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  overflow: hidden;
  overflow-y:auto ;
}

.tab-header {
  display: flex;
  background-color: #111;
}

.tab-header div {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  cursor: pointer;
  color: #eee;
  font-weight: 600;
  transition: 0.3s;
}

/*.tab-header div:hover {
  background-color: #222;
}*/

.tab-header .active {
  background-color: #FFD700;
  color: #000;
}



.tab-content.active {
  display: block;
}

.vacancy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.vacancy-card {
  flex: 1 1 calc(33.333% - 20px);
  background: #000;
  background: linear-gradient(to right, #000000, #1f1f1f, #3a3a3a);
  color: #FFD700;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.vacancy-card:hover {
  transform: translateY(-5px);
}

.vacancy-card h2 {
  /*font-size: 20px;*/
  font-size: 16px;
  /*margin-bottom: 10px;*/
}

.vacancy-card p {
  font-size: 16px;
  margin: 0;
  color: #ccc;
}
.vacancyDiv .tab-container .tab-content{
  height: 100vh;
  overflow-y: auto;
}

/*blog css */

.section_updates {
  background: #f8f8f8;
  padding: 60px 110px;
}

.section_updates .row_header p {
  
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 14px;
}

.section_updates .row_header {
  padding-bottom: 30px; 
  text-align: center;
}

.section_updates .row_header h2 {
  font-size: 36px;
  font-weight: 600;
}

.update_card {
  min-height: 400px;
  box-shadow: 0px 2px 10px #ccc;
  border-radius: 5px;
  background: #fff;
}

.update_card:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
}

.update_col .update_card .meta_info{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}


.update_col .update_card .meta_info span {
  padding: 0px 6px;
  text-decoration: none;
  color: #151618;
  /*border-right: 1px solid #151618;*/
  font-size: 12px;
  
}

/*.update_col .update_card .meta_info span:last-child {
  border-right: none;
}
.update_col .update_card .meta_info span:first-child {
  padding-left: 0px;
}*/

/*.update_col .update_card span {
  padding: 0px 6px;
  color: #151618;
}*/

.update_col .update_card h4 {
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 12px;
}

.update_col .update_card p {
  line-height: 1.5;
  /*font-size: 18px;*/
  font-size: 14px;
  text-align: justify;
}

.update_col .update_card img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  transition: transform 1.2s ease;
}

.update_card:hover img {
  transform: scale(1.2);
}

.update_card > div:first-child {
  overflow: hidden;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.update_col .update_card .btn {
  background: linear-gradient(to left, #fff 50%, #f4b400 50%) right;
  background-size: 200%;
  background-position: right;
  border-radius: 5px;
  padding: 6px 20px;
  border: solid 2px #f4b400;
  color: #f4b400;
  transition: all 0.4s ease-out;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  position: absolute;
  bottom: 14px;
}

.update_col .update_card .btn:hover {
  background-position: left;
  color: #000;
}

/*slider css */


.swiper-slide {
  display: flex;
  align-items: stretch;
}

.update_card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blogContentDiv{
  padding: 20px 15px;
  height: 250px;
}

@media screen and (max-width : 768px){
  .tab-header div {
      
    font-size: 14px;
      
  }
  .section_updates{
    padding: 60px 10px;
  }
  .tab-content{
    padding: 30px 12px;
  }
  #vacancy .vacancy-card i{
    font-size: 26px;
  }
}

/*    pdf modals */

/* Modal styling */
.pdf-modal {
  display: none;
  position: fixed;
  z-index: 9999;
/*z-index: 1000;*/
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 900px;
  position: relative;
}

.close-btn {
  color: #000;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* Badge styles */
.badge {
  display: inline-block;
  font-size: 12px;
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: bold;
}

.badge.new {
  background-color: #FFD700;
  color: #000;
}

.badge.urgent {
  background-color: red;
  color: white;
}
.quotesbox{
  height: auto;
  padding: 20px 10px;

  font-size: 1.8rem;
   
  color: #d1b000;
  color: #ffd700;
/*  #3c3939*/
/*#d1b000*/
}
.vacancyDiv{
  background: #e7e4c138;
  padding: 40px 0px;
}

@media (max-width: 992px) {
  .vacancy-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .vacancy-card {
    flex: 1 1 100%;
  }
}

/*save calender dates */

#vacancy .vacancy-card{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#vacancy .vacancy-card i{
  font-size: 20px;
}

/*highlight card for last date */
.highlight-warning {
/*  border: 2px solid #ff3c00;*/
  background-color: #9f1204;
  background: linear-gradient(190deg, #ff3c26, #9f1204, #4a0400);
  box-shadow: 0 0 10px rgba(255, 60, 0, 0.3);
}
@media screen and (max-width : 768px){
  #vacancy .vacancy-card i{
    font-size: 26px;
  }
}

/*view all vacancy */

.view_all_vacancy{
  /*background: linear-gradient(90deg, #f4c10f3b, #f8d847bd);*/
    background: linear-gradient(90deg, #f4c10f3b, #0b87802b);
    padding: 12px 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    font-size: 15px;
    color: #000;
    text-align: center;
    font-weight: 500;
}
.view_all_vacancy a{

  margin-left: 8px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;


}

.view_all_vacancy a:hover {
  background: #000;      /* hover background */
  color: #f4c10f;        /* hover text color */
}
/*Blog image */

.blog_image_container {
  aspect-ratio: 2 / 1; /* 1080:540 = 2:1 */
  overflow: hidden;
}

.blog_image_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
